@forge/cli-shared 6.5.1-next.5 → 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 +43 -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 +1931 -26
- 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 +3 -3
|
@@ -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']>;
|
|
@@ -22516,7 +22629,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22516
22629
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22517
22630
|
node?: Maybe<ExternalAssociation>;
|
|
22518
22631
|
};
|
|
22519
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22632
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22520
22633
|
export declare type ExternalAttachment = {
|
|
22521
22634
|
__typename?: 'ExternalAttachment';
|
|
22522
22635
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -22852,6 +22965,8 @@ export declare type ExternalEntities = {
|
|
|
22852
22965
|
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
22853
22966
|
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
22854
22967
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
22968
|
+
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
22969
|
+
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
22855
22970
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
22856
22971
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
22857
22972
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
@@ -22859,8 +22974,9 @@ export declare type ExternalEntities = {
|
|
|
22859
22974
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
22860
22975
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
22861
22976
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
22977
|
+
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
22862
22978
|
};
|
|
22863
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem;
|
|
22979
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
22864
22980
|
export declare type ExternalEnvironment = {
|
|
22865
22981
|
__typename?: 'ExternalEnvironment';
|
|
22866
22982
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -22992,12 +23108,47 @@ export declare type ExternalMessage = Node & {
|
|
|
22992
23108
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
22993
23109
|
url?: Maybe<Scalars['String']['output']>;
|
|
22994
23110
|
};
|
|
23111
|
+
export declare type ExternalOrganisation = Node & {
|
|
23112
|
+
__typename?: 'ExternalOrganisation';
|
|
23113
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23114
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23115
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23116
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
23117
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23118
|
+
id: Scalars['ID']['output'];
|
|
23119
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23120
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23121
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23122
|
+
parent?: Maybe<ExternalEntity>;
|
|
23123
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23124
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23125
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23126
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23127
|
+
};
|
|
22995
23128
|
export declare type ExternalPipeline = {
|
|
22996
23129
|
__typename?: 'ExternalPipeline';
|
|
22997
23130
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
22998
23131
|
id?: Maybe<Scalars['String']['output']>;
|
|
22999
23132
|
url?: Maybe<Scalars['String']['output']>;
|
|
23000
23133
|
};
|
|
23134
|
+
export declare type ExternalPosition = Node & {
|
|
23135
|
+
__typename?: 'ExternalPosition';
|
|
23136
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23137
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23138
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23139
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
23140
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23141
|
+
id: Scalars['ID']['output'];
|
|
23142
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23143
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23144
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23145
|
+
parent?: Maybe<ExternalEntity>;
|
|
23146
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23147
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
23148
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23149
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23150
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23151
|
+
};
|
|
23001
23152
|
export declare type ExternalProject = {
|
|
23002
23153
|
__typename?: 'ExternalProject';
|
|
23003
23154
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -23252,6 +23403,23 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
23252
23403
|
Task = "TASK",
|
|
23253
23404
|
WorkItem = "WORK_ITEM"
|
|
23254
23405
|
}
|
|
23406
|
+
export declare type ExternalWorker = Node & {
|
|
23407
|
+
__typename?: 'ExternalWorker';
|
|
23408
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23409
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23410
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23411
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
23412
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23413
|
+
hiredAt?: Maybe<Scalars['String']['output']>;
|
|
23414
|
+
id: Scalars['ID']['output'];
|
|
23415
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23416
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23417
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23418
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23419
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23420
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23421
|
+
workerUser?: Maybe<ExternalUser>;
|
|
23422
|
+
};
|
|
23255
23423
|
export declare type FailedRoles = {
|
|
23256
23424
|
__typename?: 'FailedRoles';
|
|
23257
23425
|
reason: Scalars['String']['output'];
|
|
@@ -28224,12 +28392,21 @@ export declare type GraphStore = {
|
|
|
28224
28392
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
28225
28393
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
28226
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>;
|
|
28227
28402
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
28228
28403
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28229
28404
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
28230
28405
|
contentReferencedEntityInverseBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28231
28406
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
28232
28407
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
28408
|
+
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
28409
|
+
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
28233
28410
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
28234
28411
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
28235
28412
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
@@ -28250,6 +28427,7 @@ export declare type GraphStore = {
|
|
|
28250
28427
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28251
28428
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
28252
28429
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28430
|
+
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
28253
28431
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
28254
28432
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
28255
28433
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -28274,6 +28452,7 @@ export declare type GraphStore = {
|
|
|
28274
28452
|
incidentLinkedJswIssueInverseBatch?: Maybe<GraphStoreBatchIncidentLinkedJswIssueConnection>;
|
|
28275
28453
|
incidentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
28276
28454
|
incidentLinkedJswIssueRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
28455
|
+
issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
28277
28456
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
28278
28457
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
28279
28458
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -28311,6 +28490,7 @@ export declare type GraphStore = {
|
|
|
28311
28490
|
issueAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseConnection>;
|
|
28312
28491
|
issueAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
28313
28492
|
issueAssociatedPrRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
28493
|
+
issueAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection>;
|
|
28314
28494
|
issueAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection>;
|
|
28315
28495
|
issueAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
28316
28496
|
issueAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
@@ -28380,6 +28560,8 @@ export declare type GraphStore = {
|
|
|
28380
28560
|
operationsContainerImprovedByActionItemInverse?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection>;
|
|
28381
28561
|
operationsContainerImprovedByActionItemInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28382
28562
|
operationsContainerImprovedByActionItemRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28563
|
+
parentCommentHasChildComment?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentConnection>;
|
|
28564
|
+
parentCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection>;
|
|
28383
28565
|
parentDocumentHasChildDocument?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentConnection>;
|
|
28384
28566
|
parentDocumentHasChildDocumentInverse?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseConnection>;
|
|
28385
28567
|
parentDocumentHasChildDocumentInverseRelationship?: Maybe<GraphStoreFullParentDocumentHasChildDocumentConnection>;
|
|
@@ -28388,10 +28570,15 @@ export declare type GraphStore = {
|
|
|
28388
28570
|
parentIssueHasChildIssueInverse?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseConnection>;
|
|
28389
28571
|
parentIssueHasChildIssueInverseRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
28390
28572
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
28573
|
+
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
28574
|
+
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
28575
|
+
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
28576
|
+
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
28391
28577
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
28392
28578
|
prInRepoInverse?: Maybe<GraphStoreSimplifiedPrInRepoInverseConnection>;
|
|
28393
28579
|
prInRepoInverseRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
28394
28580
|
prInRepoRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
28581
|
+
projectAssociatedBranch?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchConnection>;
|
|
28395
28582
|
projectAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseConnection>;
|
|
28396
28583
|
projectAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
28397
28584
|
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
@@ -28485,6 +28672,8 @@ export declare type GraphStore = {
|
|
|
28485
28672
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
28486
28673
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
28487
28674
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
28675
|
+
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
28676
|
+
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
28488
28677
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
28489
28678
|
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
28490
28679
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
@@ -28549,20 +28738,52 @@ export declare type GraphStore = {
|
|
|
28549
28738
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28550
28739
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28551
28740
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28741
|
+
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28742
|
+
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28743
|
+
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
28744
|
+
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
28552
28745
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
28553
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>;
|
|
28554
28755
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
28555
28756
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
28556
28757
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
28557
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>;
|
|
28558
28769
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28559
28770
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28560
28771
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
28561
28772
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
28562
28773
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
28563
28774
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28775
|
+
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
28776
|
+
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
28564
28777
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
28565
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>;
|
|
28566
28787
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
28567
28788
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
28568
28789
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
@@ -28571,10 +28792,16 @@ export declare type GraphStore = {
|
|
|
28571
28792
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28572
28793
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28573
28794
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28795
|
+
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28796
|
+
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28797
|
+
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28798
|
+
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28574
28799
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
28575
28800
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
28576
28801
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
28577
28802
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
28803
|
+
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
28804
|
+
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
28578
28805
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28579
28806
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28580
28807
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -28585,6 +28812,11 @@ export declare type GraphStore = {
|
|
|
28585
28812
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28586
28813
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
28587
28814
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
28815
|
+
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
28816
|
+
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
28817
|
+
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
28818
|
+
userWatchesConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection>;
|
|
28819
|
+
versionAssociatedBranch?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchConnection>;
|
|
28588
28820
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28589
28821
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28590
28822
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -28616,6 +28848,7 @@ export declare type GraphStore = {
|
|
|
28616
28848
|
versionAssociatedPullRequestInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseConnection>;
|
|
28617
28849
|
versionAssociatedPullRequestInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
28618
28850
|
versionAssociatedPullRequestRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
28851
|
+
versionAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection>;
|
|
28619
28852
|
versionAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection>;
|
|
28620
28853
|
versionAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
28621
28854
|
versionAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
@@ -28919,6 +29152,55 @@ export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
|
28919
29152
|
id: Scalars['ID']['input'];
|
|
28920
29153
|
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
28921
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
|
+
};
|
|
28922
29204
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
28923
29205
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28924
29206
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28955,6 +29237,20 @@ export declare type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
28955
29237
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28956
29238
|
id: Scalars['ID']['input'];
|
|
28957
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
|
+
};
|
|
28958
29254
|
export declare type GraphStoreCypherQueryArgs = {
|
|
28959
29255
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
28960
29256
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29085,6 +29381,13 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
29085
29381
|
ids: Array<Scalars['ID']['input']>;
|
|
29086
29382
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
29087
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
|
+
};
|
|
29088
29391
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
29089
29392
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29090
29393
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29229,6 +29532,13 @@ export declare type GraphStoreIncidentLinkedJswIssueRelationshipArgs = {
|
|
|
29229
29532
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29230
29533
|
id: Scalars['ID']['input'];
|
|
29231
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
|
+
};
|
|
29232
29542
|
export declare type GraphStoreIssueAssociatedBranchInverseArgs = {
|
|
29233
29543
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29234
29544
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29458,6 +29768,13 @@ export declare type GraphStoreIssueAssociatedPrRelationshipArgs = {
|
|
|
29458
29768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29459
29769
|
id: Scalars['ID']['input'];
|
|
29460
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
|
+
};
|
|
29461
29778
|
export declare type GraphStoreIssueAssociatedRemoteLinkInverseArgs = {
|
|
29462
29779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29463
29780
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29883,6 +30200,20 @@ export declare type GraphStoreOperationsContainerImprovedByActionItemRelationshi
|
|
|
29883
30200
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29884
30201
|
id: Scalars['ID']['input'];
|
|
29885
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
|
+
};
|
|
29886
30217
|
export declare type GraphStoreParentDocumentHasChildDocumentArgs = {
|
|
29887
30218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29888
30219
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29931,6 +30262,34 @@ export declare type GraphStoreParentIssueHasChildIssueRelationshipArgs = {
|
|
|
29931
30262
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29932
30263
|
id: Scalars['ID']['input'];
|
|
29933
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
|
+
};
|
|
29934
30293
|
export declare type GraphStorePrInRepoArgs = {
|
|
29935
30294
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29936
30295
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29955,6 +30314,13 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
|
|
|
29955
30314
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29956
30315
|
id: Scalars['ID']['input'];
|
|
29957
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
|
+
};
|
|
29958
30324
|
export declare type GraphStoreProjectAssociatedBranchInverseArgs = {
|
|
29959
30325
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29960
30326
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30552,6 +30918,20 @@ export declare type GraphStoreServiceAssociatedDeploymentInverseArgs = {
|
|
|
30552
30918
|
id: Scalars['ID']['input'];
|
|
30553
30919
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
30554
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
|
+
};
|
|
30555
30935
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
30556
30936
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30557
30937
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30973,6 +31353,34 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
30973
31353
|
id: Scalars['ID']['input'];
|
|
30974
31354
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
30975
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
|
+
};
|
|
30976
31384
|
export declare type GraphStoreUserAuthoredPrArgs = {
|
|
30977
31385
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30978
31386
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30987,6 +31395,62 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
30987
31395
|
id: Scalars['ID']['input'];
|
|
30988
31396
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
30989
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
|
+
};
|
|
30990
31454
|
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
30991
31455
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30992
31456
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31015,6 +31479,76 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
31015
31479
|
id: Scalars['ID']['input'];
|
|
31016
31480
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
31017
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
|
+
};
|
|
31018
31552
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
31019
31553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31020
31554
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31057,6 +31591,20 @@ export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
|
31057
31591
|
id: Scalars['ID']['input'];
|
|
31058
31592
|
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
31059
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
|
+
};
|
|
31060
31608
|
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
31061
31609
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31062
31610
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31071,6 +31619,62 @@ export declare type GraphStoreUserMergedPullRequestInverseArgs = {
|
|
|
31071
31619
|
id: Scalars['ID']['input'];
|
|
31072
31620
|
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
31073
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
|
+
};
|
|
31074
31678
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
31075
31679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31076
31680
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31127,6 +31731,34 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
31127
31731
|
id: Scalars['ID']['input'];
|
|
31128
31732
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
31129
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
|
+
};
|
|
31130
31762
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
31131
31763
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31132
31764
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31155,6 +31787,20 @@ export declare type GraphStoreUserUpdatedConfluencePageInverseArgs = {
|
|
|
31155
31787
|
id: Scalars['ID']['input'];
|
|
31156
31788
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluencePageSortInput>;
|
|
31157
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
|
+
};
|
|
31158
31804
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
31159
31805
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31160
31806
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31225,6 +31871,41 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
31225
31871
|
id: Scalars['ID']['input'];
|
|
31226
31872
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31227
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
|
+
};
|
|
31228
31909
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
31229
31910
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31230
31911
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31416,6 +32097,13 @@ export declare type GraphStoreVersionAssociatedPullRequestRelationshipArgs = {
|
|
|
31416
32097
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31417
32098
|
id: Scalars['ID']['input'];
|
|
31418
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
|
+
};
|
|
31419
32107
|
export declare type GraphStoreVersionAssociatedRemoteLinkInverseArgs = {
|
|
31420
32108
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31421
32109
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31992,7 +32680,7 @@ export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = {
|
|
|
31992
32680
|
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
31993
32681
|
id: Scalars['ID']['output'];
|
|
31994
32682
|
};
|
|
31995
|
-
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
32683
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
31996
32684
|
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerConnection = {
|
|
31997
32685
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerConnection';
|
|
31998
32686
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentInnerEdge>>;
|
|
@@ -32240,9 +32928,24 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
32240
32928
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
32241
32929
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32242
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
|
+
};
|
|
32243
32943
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
32244
32944
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32245
32945
|
};
|
|
32946
|
+
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
32947
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32948
|
+
};
|
|
32246
32949
|
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
32247
32950
|
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
32248
32951
|
};
|
|
@@ -32643,7 +33346,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
32643
33346
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
32644
33347
|
id: Scalars['ID']['output'];
|
|
32645
33348
|
};
|
|
32646
|
-
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;
|
|
32647
33350
|
export declare type GraphStoreCypherQueryNode = {
|
|
32648
33351
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
32649
33352
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -32654,7 +33357,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
32654
33357
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
32655
33358
|
id: Scalars['ID']['output'];
|
|
32656
33359
|
};
|
|
32657
|
-
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;
|
|
32658
33361
|
export declare type GraphStoreDateFilterInput = {
|
|
32659
33362
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32660
33363
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -33401,8 +34104,10 @@ export declare type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
|
33401
34104
|
};
|
|
33402
34105
|
export declare type GraphStoreFullIssueAssociatedBranchEndNode = {
|
|
33403
34106
|
__typename?: 'GraphStoreFullIssueAssociatedBranchEndNode';
|
|
34107
|
+
data?: Maybe<GraphStoreFullIssueAssociatedBranchEndUnion>;
|
|
33404
34108
|
id: Scalars['ID']['output'];
|
|
33405
34109
|
};
|
|
34110
|
+
export declare type GraphStoreFullIssueAssociatedBranchEndUnion = ExternalBranch;
|
|
33406
34111
|
export declare type GraphStoreFullIssueAssociatedBranchNode = Node & {
|
|
33407
34112
|
__typename?: 'GraphStoreFullIssueAssociatedBranchNode';
|
|
33408
34113
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33534,7 +34239,7 @@ export declare type GraphStoreFullIssueAssociatedDeploymentEndNode = {
|
|
|
33534
34239
|
id: Scalars['ID']['output'];
|
|
33535
34240
|
metadata?: Maybe<GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
33536
34241
|
};
|
|
33537
|
-
export declare type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
34242
|
+
export declare type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
33538
34243
|
export declare enum GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput {
|
|
33539
34244
|
Development = "DEVELOPMENT",
|
|
33540
34245
|
NotSet = "NOT_SET",
|
|
@@ -33792,8 +34497,10 @@ export declare type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
|
33792
34497
|
};
|
|
33793
34498
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkEndNode = {
|
|
33794
34499
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEndNode';
|
|
34500
|
+
data?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkEndUnion>;
|
|
33795
34501
|
id: Scalars['ID']['output'];
|
|
33796
34502
|
};
|
|
34503
|
+
export declare type GraphStoreFullIssueAssociatedRemoteLinkEndUnion = ExternalRemoteLink;
|
|
33797
34504
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkNode = Node & {
|
|
33798
34505
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkNode';
|
|
33799
34506
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33859,7 +34566,7 @@ export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode = {
|
|
|
33859
34566
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion>;
|
|
33860
34567
|
id: Scalars['ID']['output'];
|
|
33861
34568
|
};
|
|
33862
|
-
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
34569
|
+
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
33863
34570
|
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentNode = Node & {
|
|
33864
34571
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentNode';
|
|
33865
34572
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34432,8 +35139,10 @@ export declare type GraphStoreFullProjectAssociatedBranchEdge = {
|
|
|
34432
35139
|
};
|
|
34433
35140
|
export declare type GraphStoreFullProjectAssociatedBranchEndNode = {
|
|
34434
35141
|
__typename?: 'GraphStoreFullProjectAssociatedBranchEndNode';
|
|
35142
|
+
data?: Maybe<GraphStoreFullProjectAssociatedBranchEndUnion>;
|
|
34435
35143
|
id: Scalars['ID']['output'];
|
|
34436
35144
|
};
|
|
35145
|
+
export declare type GraphStoreFullProjectAssociatedBranchEndUnion = ExternalBranch;
|
|
34437
35146
|
export declare type GraphStoreFullProjectAssociatedBranchNode = Node & {
|
|
34438
35147
|
__typename?: 'GraphStoreFullProjectAssociatedBranchNode';
|
|
34439
35148
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34546,7 +35255,7 @@ export declare type GraphStoreFullProjectAssociatedDeploymentEndNode = {
|
|
|
34546
35255
|
id: Scalars['ID']['output'];
|
|
34547
35256
|
metadata?: Maybe<GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
34548
35257
|
};
|
|
34549
|
-
export declare type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
35258
|
+
export declare type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
34550
35259
|
export declare enum GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput {
|
|
34551
35260
|
Development = "DEVELOPMENT",
|
|
34552
35261
|
NotSet = "NOT_SET",
|
|
@@ -35498,7 +36207,7 @@ export declare type GraphStoreFullSprintAssociatedDeploymentEndNode = {
|
|
|
35498
36207
|
id: Scalars['ID']['output'];
|
|
35499
36208
|
metadata?: Maybe<GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
35500
36209
|
};
|
|
35501
|
-
export declare type GraphStoreFullSprintAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
36210
|
+
export declare type GraphStoreFullSprintAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
35502
36211
|
export declare enum GraphStoreFullSprintAssociatedDeploymentEnvironmentTypeOutput {
|
|
35503
36212
|
Development = "DEVELOPMENT",
|
|
35504
36213
|
NotSet = "NOT_SET",
|
|
@@ -35997,8 +36706,10 @@ export declare type GraphStoreFullVersionAssociatedBranchEdge = {
|
|
|
35997
36706
|
};
|
|
35998
36707
|
export declare type GraphStoreFullVersionAssociatedBranchEndNode = {
|
|
35999
36708
|
__typename?: 'GraphStoreFullVersionAssociatedBranchEndNode';
|
|
36709
|
+
data?: Maybe<GraphStoreFullVersionAssociatedBranchEndUnion>;
|
|
36000
36710
|
id: Scalars['ID']['output'];
|
|
36001
36711
|
};
|
|
36712
|
+
export declare type GraphStoreFullVersionAssociatedBranchEndUnion = ExternalBranch;
|
|
36002
36713
|
export declare type GraphStoreFullVersionAssociatedBranchNode = Node & {
|
|
36003
36714
|
__typename?: 'GraphStoreFullVersionAssociatedBranchNode';
|
|
36004
36715
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36097,7 +36808,7 @@ export declare type GraphStoreFullVersionAssociatedDeploymentEndNode = {
|
|
|
36097
36808
|
data?: Maybe<GraphStoreFullVersionAssociatedDeploymentEndUnion>;
|
|
36098
36809
|
id: Scalars['ID']['output'];
|
|
36099
36810
|
};
|
|
36100
|
-
export declare type GraphStoreFullVersionAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
36811
|
+
export declare type GraphStoreFullVersionAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
36101
36812
|
export declare type GraphStoreFullVersionAssociatedDeploymentNode = Node & {
|
|
36102
36813
|
__typename?: 'GraphStoreFullVersionAssociatedDeploymentNode';
|
|
36103
36814
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36277,8 +36988,10 @@ export declare type GraphStoreFullVersionAssociatedRemoteLinkEdge = {
|
|
|
36277
36988
|
};
|
|
36278
36989
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkEndNode = {
|
|
36279
36990
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEndNode';
|
|
36991
|
+
data?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkEndUnion>;
|
|
36280
36992
|
id: Scalars['ID']['output'];
|
|
36281
36993
|
};
|
|
36994
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkEndUnion = ExternalRemoteLink;
|
|
36282
36995
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkNode = Node & {
|
|
36283
36996
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkNode';
|
|
36284
36997
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36394,6 +37107,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
36394
37107
|
Sca = "SCA",
|
|
36395
37108
|
Unknown = "UNKNOWN"
|
|
36396
37109
|
}
|
|
37110
|
+
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
37111
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37112
|
+
};
|
|
36397
37113
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput = {
|
|
36398
37114
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36399
37115
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36835,12 +37551,21 @@ export declare type GraphStoreOperationsContainerImpactedByIncidentSortInput = {
|
|
|
36835
37551
|
export declare type GraphStoreOperationsContainerImprovedByActionItemSortInput = {
|
|
36836
37552
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36837
37553
|
};
|
|
37554
|
+
export declare type GraphStoreParentCommentHasChildCommentSortInput = {
|
|
37555
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37556
|
+
};
|
|
36838
37557
|
export declare type GraphStoreParentDocumentHasChildDocumentSortInput = {
|
|
36839
37558
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36840
37559
|
};
|
|
36841
37560
|
export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
36842
37561
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36843
37562
|
};
|
|
37563
|
+
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
37564
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37565
|
+
};
|
|
37566
|
+
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
37567
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37568
|
+
};
|
|
36844
37569
|
export declare type GraphStorePrInRepoSortInput = {
|
|
36845
37570
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36846
37571
|
};
|
|
@@ -37279,6 +38004,9 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInpu
|
|
|
37279
38004
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
37280
38005
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37281
38006
|
};
|
|
38007
|
+
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
38008
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38009
|
+
};
|
|
37282
38010
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
37283
38011
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
37284
38012
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -37786,6 +38514,104 @@ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInvers
|
|
|
37786
38514
|
};
|
|
37787
38515
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
37788
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;
|
|
37789
38615
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
37790
38616
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
37791
38617
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -37814,6 +38640,34 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
37814
38640
|
};
|
|
37815
38641
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
37816
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;
|
|
37817
38671
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
|
|
37818
38672
|
__typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
|
|
37819
38673
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
|
|
@@ -37840,7 +38694,7 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
37840
38694
|
lastUpdated: Scalars['DateTime']['output'];
|
|
37841
38695
|
node?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseUnion>;
|
|
37842
38696
|
};
|
|
37843
|
-
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary;
|
|
38697
|
+
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
37844
38698
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
|
|
37845
38699
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
37846
38700
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
@@ -37954,6 +38808,20 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
37954
38808
|
};
|
|
37955
38809
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
37956
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;
|
|
37957
38825
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
37958
38826
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
37959
38827
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -38082,6 +38950,19 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
38082
38950
|
};
|
|
38083
38951
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
38084
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
|
+
};
|
|
38085
38966
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
38086
38967
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
38087
38968
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseEdge>>>;
|
|
@@ -38096,6 +38977,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
38096
38977
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
38097
38978
|
};
|
|
38098
38979
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseUnion = JiraIssue;
|
|
38980
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchUnion = ExternalBranch;
|
|
38099
38981
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildConnection = HasPageInfo & {
|
|
38100
38982
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildConnection';
|
|
38101
38983
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildEdge>>>;
|
|
@@ -38183,7 +39065,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
38183
39065
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
38184
39066
|
};
|
|
38185
39067
|
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion = JiraIssue;
|
|
38186
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary;
|
|
39068
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
38187
39069
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignConnection = HasPageInfo & {
|
|
38188
39070
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignConnection';
|
|
38189
39071
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDesignEdge>>>;
|
|
@@ -38296,6 +39178,19 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
38296
39178
|
};
|
|
38297
39179
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
38298
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
|
+
};
|
|
38299
39194
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
38300
39195
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
38301
39196
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -38310,6 +39205,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
38310
39205
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
38311
39206
|
};
|
|
38312
39207
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion = JiraIssue;
|
|
39208
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
38313
39209
|
export declare type GraphStoreSimplifiedIssueChangesComponentConnection = HasPageInfo & HasTotal & {
|
|
38314
39210
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentConnection';
|
|
38315
39211
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueChangesComponentEdge>>>;
|
|
@@ -38415,7 +39311,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInvers
|
|
|
38415
39311
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion>;
|
|
38416
39312
|
};
|
|
38417
39313
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion = JiraIssue;
|
|
38418
|
-
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion = DeploymentSummary;
|
|
39314
|
+
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
38419
39315
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
38420
39316
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagConnection';
|
|
38421
39317
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge>>>;
|
|
@@ -38830,6 +39726,34 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
38830
39726
|
};
|
|
38831
39727
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion = DevOpsService;
|
|
38832
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;
|
|
38833
39757
|
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
38834
39758
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentConnection';
|
|
38835
39759
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentEdge>>>;
|
|
@@ -38886,6 +39810,62 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
38886
39810
|
};
|
|
38887
39811
|
export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion = JiraIssue;
|
|
38888
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;
|
|
38889
39869
|
export declare type GraphStoreSimplifiedPrInRepoConnection = HasPageInfo & {
|
|
38890
39870
|
__typename?: 'GraphStoreSimplifiedPrInRepoConnection';
|
|
38891
39871
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInRepoEdge>>>;
|
|
@@ -38914,6 +39894,21 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
38914
39894
|
};
|
|
38915
39895
|
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
38916
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
|
+
};
|
|
38917
39912
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
38918
39913
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseConnection';
|
|
38919
39914
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseEdge>>>;
|
|
@@ -38930,6 +39925,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
38930
39925
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
38931
39926
|
};
|
|
38932
39927
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseUnion = JiraProject;
|
|
39928
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBranchUnion = ExternalBranch;
|
|
38933
39929
|
export declare type GraphStoreSimplifiedProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
38934
39930
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildConnection';
|
|
38935
39931
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBuildEdge>>>;
|
|
@@ -38993,7 +39989,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge =
|
|
|
38993
39989
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion>;
|
|
38994
39990
|
};
|
|
38995
39991
|
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion = JiraProject;
|
|
38996
|
-
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary;
|
|
39992
|
+
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
38997
39993
|
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
38998
39994
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagConnection';
|
|
38999
39995
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge>>>;
|
|
@@ -39659,7 +40655,35 @@ export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge =
|
|
|
39659
40655
|
node?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion>;
|
|
39660
40656
|
};
|
|
39661
40657
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion = DevOpsService;
|
|
39662
|
-
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;
|
|
39663
40687
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
39664
40688
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentConnection';
|
|
39665
40689
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentEdge>>>;
|
|
@@ -39871,7 +40895,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedDeploymentEdge = {
|
|
|
39871
40895
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39872
40896
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentUnion>;
|
|
39873
40897
|
};
|
|
39874
|
-
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentUnion = DeploymentSummary;
|
|
40898
|
+
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
39875
40899
|
export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
39876
40900
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedFeatureFlagConnection';
|
|
39877
40901
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge>>>;
|
|
@@ -40180,6 +41204,62 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
40180
41204
|
};
|
|
40181
41205
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40182
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;
|
|
40183
41263
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
40184
41264
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
40185
41265
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
@@ -40208,6 +41288,118 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
40208
41288
|
};
|
|
40209
41289
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40210
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;
|
|
40211
41403
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40212
41404
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
40213
41405
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -40264,6 +41456,146 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
40264
41456
|
};
|
|
40265
41457
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40266
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;
|
|
40267
41599
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
40268
41600
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
40269
41601
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -40352,6 +41684,34 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
40352
41684
|
};
|
|
40353
41685
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40354
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;
|
|
40355
41715
|
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
40356
41716
|
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
40357
41717
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
@@ -40380,6 +41740,118 @@ export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
|
40380
41740
|
};
|
|
40381
41741
|
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40382
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;
|
|
40383
41855
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
40384
41856
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
40385
41857
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -40496,6 +41968,62 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
40496
41968
|
};
|
|
40497
41969
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40498
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;
|
|
40499
42027
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40500
42028
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
40501
42029
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -40552,6 +42080,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseEdge = {
|
|
|
40552
42080
|
};
|
|
40553
42081
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40554
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;
|
|
40555
42111
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
40556
42112
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
40557
42113
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -40692,6 +42248,77 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
40692
42248
|
};
|
|
40693
42249
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40694
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
|
+
};
|
|
40695
42322
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
40696
42323
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
40697
42324
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -40708,6 +42335,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
40708
42335
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
40709
42336
|
};
|
|
40710
42337
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseUnion = JiraVersion;
|
|
42338
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBranchUnion = ExternalBranch;
|
|
40711
42339
|
export declare type GraphStoreSimplifiedVersionAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
40712
42340
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildConnection';
|
|
40713
42341
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBuildEdge>>>;
|
|
@@ -40803,7 +42431,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge =
|
|
|
40803
42431
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion>;
|
|
40804
42432
|
};
|
|
40805
42433
|
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion = JiraVersion;
|
|
40806
|
-
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentUnion = DeploymentSummary;
|
|
42434
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
40807
42435
|
export declare type GraphStoreSimplifiedVersionAssociatedDesignConnection = HasPageInfo & HasTotal & {
|
|
40808
42436
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignConnection';
|
|
40809
42437
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedDesignEdge>>>;
|
|
@@ -40928,6 +42556,19 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
40928
42556
|
};
|
|
40929
42557
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
40930
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
|
+
};
|
|
40931
42572
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
40932
42573
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
40933
42574
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -40942,6 +42583,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
40942
42583
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
40943
42584
|
};
|
|
40944
42585
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion = JiraVersion;
|
|
42586
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
40945
42587
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
40946
42588
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection';
|
|
40947
42589
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge>>>;
|
|
@@ -41373,15 +43015,48 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
41373
43015
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
41374
43016
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41375
43017
|
};
|
|
43018
|
+
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
43019
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43020
|
+
};
|
|
43021
|
+
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
43022
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43023
|
+
};
|
|
41376
43024
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
41377
43025
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41378
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
|
+
};
|
|
41379
43039
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
41380
43040
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41381
43041
|
};
|
|
41382
43042
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
41383
43043
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41384
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
|
+
};
|
|
41385
43060
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
41386
43061
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41387
43062
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41394,9 +43069,24 @@ export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
|
41394
43069
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
41395
43070
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41396
43071
|
};
|
|
43072
|
+
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
43073
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43074
|
+
};
|
|
41397
43075
|
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
41398
43076
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41399
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
|
+
};
|
|
41400
43090
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
41401
43091
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41402
43092
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41412,12 +43102,21 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
41412
43102
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
41413
43103
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41414
43104
|
};
|
|
43105
|
+
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
43106
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43107
|
+
};
|
|
43108
|
+
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
43109
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43110
|
+
};
|
|
41415
43111
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
41416
43112
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41417
43113
|
};
|
|
41418
43114
|
export declare type GraphStoreUserUpdatedConfluencePageSortInput = {
|
|
41419
43115
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41420
43116
|
};
|
|
43117
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
43118
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43119
|
+
};
|
|
41421
43120
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
41422
43121
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41423
43122
|
};
|
|
@@ -41433,6 +43132,12 @@ export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
|
41433
43132
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
41434
43133
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41435
43134
|
};
|
|
43135
|
+
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
43136
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43137
|
+
};
|
|
43138
|
+
export declare type GraphStoreUserWatchesConfluencePageSortInput = {
|
|
43139
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43140
|
+
};
|
|
41436
43141
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
41437
43142
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41438
43143
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41670,6 +43375,10 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
41670
43375
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
41671
43376
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
41672
43377
|
};
|
|
43378
|
+
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
43379
|
+
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
43380
|
+
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
43381
|
+
};
|
|
41673
43382
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
41674
43383
|
Large = "LARGE",
|
|
41675
43384
|
Medium = "MEDIUM",
|
|
@@ -41695,6 +43404,10 @@ export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
|
41695
43404
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
41696
43405
|
unifiedProfile: GrowthUnifiedProfileInput;
|
|
41697
43406
|
};
|
|
43407
|
+
export declare enum GrowthUnifiedProfileDomainType {
|
|
43408
|
+
Business = "BUSINESS",
|
|
43409
|
+
Personal = "PERSONAL"
|
|
43410
|
+
}
|
|
41698
43411
|
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
41699
43412
|
Complete = "COMPLETE",
|
|
41700
43413
|
Error = "ERROR",
|
|
@@ -41714,6 +43427,10 @@ export declare enum GrowthUnifiedProfileEntityType {
|
|
|
41714
43427
|
Org = "ORG",
|
|
41715
43428
|
Site = "SITE"
|
|
41716
43429
|
}
|
|
43430
|
+
export declare enum GrowthUnifiedProfileEntryType {
|
|
43431
|
+
Existing = "EXISTING",
|
|
43432
|
+
New = "NEW"
|
|
43433
|
+
}
|
|
41717
43434
|
export declare type GrowthUnifiedProfileInput = {
|
|
41718
43435
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
41719
43436
|
};
|
|
@@ -41835,6 +43552,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
41835
43552
|
export declare type GrowthUnifiedProfileResult = {
|
|
41836
43553
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
41837
43554
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
43555
|
+
companyProfile?: Maybe<GrowthUnifiedProfileCompanyProfile>;
|
|
41838
43556
|
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
41839
43557
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
41840
43558
|
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
@@ -41843,6 +43561,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
41843
43561
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
41844
43562
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
41845
43563
|
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
43564
|
+
userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
|
|
41846
43565
|
};
|
|
41847
43566
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
41848
43567
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
@@ -41880,6 +43599,11 @@ export declare type GrowthUnifiedProfileUserFootprints = {
|
|
|
41880
43599
|
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
41881
43600
|
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
41882
43601
|
};
|
|
43602
|
+
export declare type GrowthUnifiedProfileUserProfile = {
|
|
43603
|
+
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
43604
|
+
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
43605
|
+
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
43606
|
+
};
|
|
41883
43607
|
export declare type GrowthUnifiedProfileUtm = {
|
|
41884
43608
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
41885
43609
|
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
@@ -43220,12 +44944,17 @@ export declare type HelpLayoutQueryApi = {
|
|
|
43220
44944
|
__typename?: 'HelpLayoutQueryApi';
|
|
43221
44945
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
43222
44946
|
layout?: Maybe<HelpLayoutResult>;
|
|
44947
|
+
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
43223
44948
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
43224
44949
|
};
|
|
43225
44950
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
43226
44951
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
43227
44952
|
id: Scalars['ID']['input'];
|
|
43228
44953
|
};
|
|
44954
|
+
export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
44955
|
+
filter?: InputMaybe<HelpLayoutFilter>;
|
|
44956
|
+
parentAri: Scalars['ID']['input'];
|
|
44957
|
+
};
|
|
43229
44958
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
43230
44959
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
43231
44960
|
parentAri: Scalars['ID']['input'];
|
|
@@ -47563,6 +49292,7 @@ export declare type JiraDeleteCustomFieldInput = {
|
|
|
47563
49292
|
};
|
|
47564
49293
|
export declare type JiraDeleteCustomFieldPayload = Payload & {
|
|
47565
49294
|
__typename?: 'JiraDeleteCustomFieldPayload';
|
|
49295
|
+
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
47566
49296
|
errors?: Maybe<Array<MutationError>>;
|
|
47567
49297
|
success: Scalars['Boolean']['output'];
|
|
47568
49298
|
};
|
|
@@ -49222,6 +50952,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
49222
50952
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
49223
50953
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
49224
50954
|
key: Scalars['String']['output'];
|
|
50955
|
+
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
49225
50956
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
49226
50957
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
49227
50958
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
@@ -49244,6 +50975,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
49244
50975
|
priorityField?: Maybe<JiraPriorityField>;
|
|
49245
50976
|
projectField?: Maybe<JiraProjectField>;
|
|
49246
50977
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
50978
|
+
redactedFields?: Maybe<JiraFieldConnection>;
|
|
50979
|
+
redactions?: Maybe<JiraRedactionConnection>;
|
|
49247
50980
|
reporter?: Maybe<User>;
|
|
49248
50981
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
49249
50982
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -49404,6 +51137,19 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
49404
51137
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49405
51138
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49406
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
|
+
};
|
|
49407
51153
|
export declare type JiraIssueSearchViewContextArgs = {
|
|
49408
51154
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49409
51155
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49686,16 +51432,24 @@ export declare type JiraIssueDevSummaryResult = {
|
|
|
49686
51432
|
};
|
|
49687
51433
|
export declare type JiraIssueEdge = {
|
|
49688
51434
|
__typename?: 'JiraIssueEdge';
|
|
51435
|
+
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
49689
51436
|
cursor: Scalars['String']['output'];
|
|
49690
51437
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
51438
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
49691
51439
|
node?: Maybe<JiraIssue>;
|
|
49692
51440
|
};
|
|
51441
|
+
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
51442
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
51443
|
+
};
|
|
49693
51444
|
export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
49694
51445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49695
51446
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49696
51447
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49697
51448
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49698
51449
|
};
|
|
51450
|
+
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
51451
|
+
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
51452
|
+
};
|
|
49699
51453
|
export declare type JiraIssueExpandedGroup = {
|
|
49700
51454
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
49701
51455
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -51959,6 +53713,7 @@ export declare type JiraMutation = {
|
|
|
51959
53713
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
51960
53714
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
51961
53715
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
53716
|
+
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
51962
53717
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
51963
53718
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
51964
53719
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
@@ -51979,6 +53734,7 @@ export declare type JiraMutation = {
|
|
|
51979
53734
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
51980
53735
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
51981
53736
|
removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
|
|
53737
|
+
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
51982
53738
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
51983
53739
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
51984
53740
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -52271,6 +54027,10 @@ export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryAr
|
|
|
52271
54027
|
input: JiraServiceManagementUpdateRequestTypeCategoryInput;
|
|
52272
54028
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
52273
54029
|
};
|
|
54030
|
+
export declare type JiraMutationJwmAssociateFieldArgs = {
|
|
54031
|
+
cloudId: Scalars['ID']['input'];
|
|
54032
|
+
input: JiraWorkManagementAssociateFieldInput;
|
|
54033
|
+
};
|
|
52274
54034
|
export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
|
|
52275
54035
|
input: JiraWorkManagementCreateCustomBackgroundInput;
|
|
52276
54036
|
};
|
|
@@ -52332,6 +54092,9 @@ export declare type JiraMutationRankNavigationItemArgs = {
|
|
|
52332
54092
|
export declare type JiraMutationRemoveActiveBackgroundArgs = {
|
|
52333
54093
|
input: JiraRemoveActiveBackgroundInput;
|
|
52334
54094
|
};
|
|
54095
|
+
export declare type JiraMutationRemoveCustomFieldArgs = {
|
|
54096
|
+
input: JiraRemoveCustomFieldInput;
|
|
54097
|
+
};
|
|
52335
54098
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
52336
54099
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
52337
54100
|
};
|
|
@@ -53005,10 +54768,15 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
|
|
|
53005
54768
|
actions?: InputMaybe<JiraOAuthAppsFeatureFlagsModuleActionsInput>;
|
|
53006
54769
|
isEnabled: Scalars['Boolean']['input'];
|
|
53007
54770
|
};
|
|
54771
|
+
export declare type JiraOAuthAppsInstallAppInput = {
|
|
54772
|
+
appId: Scalars['ID']['input'];
|
|
54773
|
+
clientMutationId?: InputMaybe<Scalars['ID']['input']>;
|
|
54774
|
+
};
|
|
53008
54775
|
export declare type JiraOAuthAppsMutation = {
|
|
53009
54776
|
__typename?: 'JiraOAuthAppsMutation';
|
|
53010
54777
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53011
54778
|
deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
54779
|
+
installJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53012
54780
|
updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53013
54781
|
};
|
|
53014
54782
|
export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
|
|
@@ -53019,6 +54787,10 @@ export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
|
|
|
53019
54787
|
cloudId: Scalars['String']['input'];
|
|
53020
54788
|
input: JiraOAuthAppsDeleteAppInput;
|
|
53021
54789
|
};
|
|
54790
|
+
export declare type JiraOAuthAppsMutationInstallJiraOAuthAppArgs = {
|
|
54791
|
+
cloudId: Scalars['String']['input'];
|
|
54792
|
+
input: JiraOAuthAppsInstallAppInput;
|
|
54793
|
+
};
|
|
53022
54794
|
export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
|
|
53023
54795
|
cloudId: Scalars['String']['input'];
|
|
53024
54796
|
input: JiraOAuthAppsUpdateAppInput;
|
|
@@ -55633,6 +57405,7 @@ export declare type JiraRankNavigationItemInput = {
|
|
|
55633
57405
|
afterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
55634
57406
|
beforeItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
55635
57407
|
id: Scalars['ID']['input'];
|
|
57408
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55636
57409
|
};
|
|
55637
57410
|
export declare type JiraRankNavigationItemPayload = Payload & {
|
|
55638
57411
|
__typename?: 'JiraRankNavigationItemPayload';
|
|
@@ -55656,6 +57429,38 @@ export declare enum JiraRecommendationCategory {
|
|
|
55656
57429
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
55657
57430
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
55658
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
|
+
};
|
|
55659
57464
|
export declare type JiraReleaseNotesConfiguration = {
|
|
55660
57465
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
55661
57466
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -55833,6 +57638,17 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
55833
57638
|
errors?: Maybe<Array<MutationError>>;
|
|
55834
57639
|
success: Scalars['Boolean']['output'];
|
|
55835
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
|
+
};
|
|
55836
57652
|
export declare type JiraRemoveIssuesFromAllFixVersionsInput = {
|
|
55837
57653
|
issueIds: Array<Scalars['ID']['input']>;
|
|
55838
57654
|
};
|
|
@@ -55885,6 +57701,7 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
55885
57701
|
export declare type JiraRenameNavigationItemInput = {
|
|
55886
57702
|
id: Scalars['ID']['input'];
|
|
55887
57703
|
label: Scalars['String']['input'];
|
|
57704
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55888
57705
|
};
|
|
55889
57706
|
export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
55890
57707
|
__typename?: 'JiraRenameNavigationItemPayload';
|
|
@@ -57466,6 +59283,7 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
57466
59283
|
};
|
|
57467
59284
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
57468
59285
|
id: Scalars['ID']['input'];
|
|
59286
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57469
59287
|
};
|
|
57470
59288
|
export declare type JiraSetDefaultNavigationItemPayload = Payload & {
|
|
57471
59289
|
__typename?: 'JiraSetDefaultNavigationItemPayload';
|
|
@@ -59269,6 +61087,7 @@ export declare type JiraUserPreferences = {
|
|
|
59269
61087
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
59270
61088
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59271
61089
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
61090
|
+
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59272
61091
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
59273
61092
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59274
61093
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60027,6 +61846,17 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
60027
61846
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60028
61847
|
};
|
|
60029
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
|
+
};
|
|
60030
61860
|
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
60031
61861
|
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
60032
61862
|
attachment?: Maybe<JiraAttachment>;
|
|
@@ -61631,6 +63461,7 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
|
61631
63461
|
};
|
|
61632
63462
|
export declare enum KnowledgeDiscoveryKeyPhraseCategory {
|
|
61633
63463
|
Acronym = "ACRONYM",
|
|
63464
|
+
Auto = "AUTO",
|
|
61634
63465
|
Other = "OTHER",
|
|
61635
63466
|
Project = "PROJECT",
|
|
61636
63467
|
Team = "TEAM"
|
|
@@ -61699,6 +63530,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
61699
63530
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
61700
63531
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
61701
63532
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
63533
|
+
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
61702
63534
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
61703
63535
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
61704
63536
|
};
|
|
@@ -61769,6 +63601,10 @@ export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
|
61769
63601
|
siteId: Scalars['String']['input'];
|
|
61770
63602
|
teamName: Scalars['String']['input'];
|
|
61771
63603
|
};
|
|
63604
|
+
export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
63605
|
+
siteId: Scalars['String']['input'];
|
|
63606
|
+
userQuery: Scalars['String']['input'];
|
|
63607
|
+
};
|
|
61772
63608
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
61773
63609
|
locale: Scalars['String']['input'];
|
|
61774
63610
|
query: Scalars['String']['input'];
|
|
@@ -61821,6 +63657,13 @@ export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
|
61821
63657
|
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
61822
63658
|
};
|
|
61823
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
|
+
};
|
|
61824
63667
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
61825
63668
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
61826
63669
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -61894,6 +63737,11 @@ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
|
61894
63737
|
id: Scalars['ID']['output'];
|
|
61895
63738
|
user?: Maybe<User>;
|
|
61896
63739
|
};
|
|
63740
|
+
export declare type KnowledgeDiscoveryUserSearchResult = KnowledgeDiscoveryUsers | QueryError;
|
|
63741
|
+
export declare type KnowledgeDiscoveryUsers = {
|
|
63742
|
+
__typename?: 'KnowledgeDiscoveryUsers';
|
|
63743
|
+
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
63744
|
+
};
|
|
61897
63745
|
export declare type KnownUser = Person & {
|
|
61898
63746
|
__typename?: 'KnownUser';
|
|
61899
63747
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -62605,6 +64453,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
62605
64453
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
62606
64454
|
appKey: Scalars['ID']['output'];
|
|
62607
64455
|
appSoftwareId: Scalars['ID']['output'];
|
|
64456
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62608
64457
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
62609
64458
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
62610
64459
|
hosting: MarketplaceConsoleHosting;
|
|
@@ -63997,6 +65846,10 @@ export declare type MarketplaceStoreHomePageSectionScreenSpecificProperties = {
|
|
|
63997
65846
|
md: MarketplaceStoreHomePageSectionScreenConfig;
|
|
63998
65847
|
sm: MarketplaceStoreHomePageSectionScreenConfig;
|
|
63999
65848
|
};
|
|
65849
|
+
export declare enum MarketplaceStoreHostInstanceType {
|
|
65850
|
+
Production = "PRODUCTION",
|
|
65851
|
+
Sandbox = "SANDBOX"
|
|
65852
|
+
}
|
|
64000
65853
|
export declare type MarketplaceStoreHostLicense = {
|
|
64001
65854
|
__typename?: 'MarketplaceStoreHostLicense';
|
|
64002
65855
|
autoRenewal: Scalars['Boolean']['output'];
|
|
@@ -64009,8 +65862,10 @@ export declare type MarketplaceStoreHostLicense = {
|
|
|
64009
65862
|
export declare type MarketplaceStoreHostStatusResponse = {
|
|
64010
65863
|
__typename?: 'MarketplaceStoreHostStatusResponse';
|
|
64011
65864
|
billingCurrency: Scalars['String']['output'];
|
|
64012
|
-
|
|
65865
|
+
billingSystem: MarketplaceStoreBillingSystem;
|
|
65866
|
+
hostCmtEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
64013
65867
|
hostLicense: MarketplaceStoreHostLicense;
|
|
65868
|
+
instanceType: MarketplaceStoreHostInstanceType;
|
|
64014
65869
|
pacUnavailable: Scalars['Boolean']['output'];
|
|
64015
65870
|
upmLicensedHostUsers: Scalars['Int']['output'];
|
|
64016
65871
|
};
|
|
@@ -64042,8 +65897,11 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
|
64042
65897
|
}
|
|
64043
65898
|
export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
64044
65899
|
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
64045
|
-
|
|
64046
|
-
|
|
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'];
|
|
64047
65905
|
};
|
|
64048
65906
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
64049
65907
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
@@ -64615,6 +66473,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
64615
66473
|
allocations?: Maybe<MercuryFocusAreaAllocations>;
|
|
64616
66474
|
ari: Scalars['String']['output'];
|
|
64617
66475
|
createdDate: Scalars['String']['output'];
|
|
66476
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
64618
66477
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
64619
66478
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
64620
66479
|
focusAreaType: MercuryFocusAreaType;
|
|
@@ -66086,6 +67945,12 @@ export declare type Mutation = {
|
|
|
66086
67945
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
66087
67946
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
66088
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>;
|
|
66089
67954
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
66090
67955
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
66091
67956
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -66908,6 +68773,30 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
|
66908
68773
|
cloudId: Scalars['ID']['input'];
|
|
66909
68774
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
66910
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
|
+
};
|
|
66911
68800
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
66912
68801
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
66913
68802
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70526,6 +72415,7 @@ export declare type Query = {
|
|
|
70526
72415
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
70527
72416
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
70528
72417
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
72418
|
+
confluence_template?: Maybe<ContentTemplate>;
|
|
70529
72419
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
70530
72420
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
70531
72421
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
@@ -72072,6 +73962,10 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
72072
73962
|
export declare type QueryConfluence_StorageArgs = {
|
|
72073
73963
|
cloudId: Scalars['ID']['input'];
|
|
72074
73964
|
};
|
|
73965
|
+
export declare type QueryConfluence_TemplateArgs = {
|
|
73966
|
+
cloudId: Scalars['ID']['input'];
|
|
73967
|
+
contentTemplateId: Scalars['String']['input'];
|
|
73968
|
+
};
|
|
72075
73969
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
72076
73970
|
cloudId: Scalars['ID']['input'];
|
|
72077
73971
|
};
|
|
@@ -73613,7 +75507,13 @@ export declare type RadarGroupMetrics = {
|
|
|
73613
75507
|
__typename?: 'RadarGroupMetrics';
|
|
73614
75508
|
count: Scalars['Int']['output'];
|
|
73615
75509
|
field: RadarFieldValueIdPair;
|
|
73616
|
-
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']>;
|
|
73617
75517
|
};
|
|
73618
75518
|
export declare type RadarGroupMetricsConnection = RadarConnection & {
|
|
73619
75519
|
__typename?: 'RadarGroupMetricsConnection';
|
|
@@ -81545,6 +83445,7 @@ export declare type TrelloCardViewer = {
|
|
|
81545
83445
|
export declare type TrelloCheckItem = {
|
|
81546
83446
|
__typename?: 'TrelloCheckItem';
|
|
81547
83447
|
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
83448
|
+
member?: Maybe<TrelloMember>;
|
|
81548
83449
|
name?: Maybe<TrelloUserGeneratedText>;
|
|
81549
83450
|
objectId: Scalars['ID']['output'];
|
|
81550
83451
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -82321,6 +84222,7 @@ export declare type TrelloPowerUpDataFilterInput = {
|
|
|
82321
84222
|
export declare enum TrelloPowerUpDataScope {
|
|
82322
84223
|
Board = "BOARD",
|
|
82323
84224
|
Card = "CARD",
|
|
84225
|
+
Member = "MEMBER",
|
|
82324
84226
|
Organization = "ORGANIZATION"
|
|
82325
84227
|
}
|
|
82326
84228
|
export declare type TrelloPowerUpIcon = {
|
|
@@ -82683,6 +84585,7 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
82683
84585
|
};
|
|
82684
84586
|
export declare type TrelloWorkspace = Node & {
|
|
82685
84587
|
__typename?: 'TrelloWorkspace';
|
|
84588
|
+
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
82686
84589
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
82687
84590
|
description?: Maybe<Scalars['String']['output']>;
|
|
82688
84591
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -82888,6 +84791,7 @@ export declare type UnifiedForumsBadgesConnection = UnifiedIConnection & {
|
|
|
82888
84791
|
};
|
|
82889
84792
|
export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
82890
84793
|
__typename?: 'UnifiedForumsGroup';
|
|
84794
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
82891
84795
|
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
82892
84796
|
description?: Maybe<Scalars['String']['output']>;
|
|
82893
84797
|
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -83214,6 +85118,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
83214
85118
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
83215
85119
|
id: Scalars['ID']['output'];
|
|
83216
85120
|
internalId?: Maybe<Scalars['ID']['output']>;
|
|
85121
|
+
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
83217
85122
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
83218
85123
|
isPrivate: Scalars['Boolean']['output'];
|
|
83219
85124
|
learning?: Maybe<UnifiedULearningResult>;
|