github-schema 1.7.11 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/github-schema.d.cts +534 -243
- package/dist/github-schema.d.ts +534 -243
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +863 -236
- package/package.json +10 -10
package/dist/github-schema.d.ts
CHANGED
|
@@ -112,7 +112,7 @@ type AbortQueuedMigrationsInput = {
|
|
|
112
112
|
/** The ID of the organization that is running the migrations. */
|
|
113
113
|
ownerId: Scalars['ID']['input'];
|
|
114
114
|
};
|
|
115
|
-
/** Autogenerated return type of AbortQueuedMigrations */
|
|
115
|
+
/** Autogenerated return type of AbortQueuedMigrations. */
|
|
116
116
|
type AbortQueuedMigrationsPayload = {
|
|
117
117
|
__typename?: 'AbortQueuedMigrationsPayload';
|
|
118
118
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -127,7 +127,7 @@ type AbortRepositoryMigrationInput = {
|
|
|
127
127
|
/** The ID of the migration to be aborted. */
|
|
128
128
|
migrationId: Scalars['ID']['input'];
|
|
129
129
|
};
|
|
130
|
-
/** Autogenerated return type of AbortRepositoryMigration */
|
|
130
|
+
/** Autogenerated return type of AbortRepositoryMigration. */
|
|
131
131
|
type AbortRepositoryMigrationPayload = {
|
|
132
132
|
__typename?: 'AbortRepositoryMigrationPayload';
|
|
133
133
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -142,7 +142,7 @@ type AcceptEnterpriseAdministratorInvitationInput = {
|
|
|
142
142
|
/** The id of the invitation being accepted */
|
|
143
143
|
invitationId: Scalars['ID']['input'];
|
|
144
144
|
};
|
|
145
|
-
/** Autogenerated return type of AcceptEnterpriseAdministratorInvitation */
|
|
145
|
+
/** Autogenerated return type of AcceptEnterpriseAdministratorInvitation. */
|
|
146
146
|
type AcceptEnterpriseAdministratorInvitationPayload = {
|
|
147
147
|
__typename?: 'AcceptEnterpriseAdministratorInvitationPayload';
|
|
148
148
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -152,6 +152,23 @@ type AcceptEnterpriseAdministratorInvitationPayload = {
|
|
|
152
152
|
/** A message confirming the result of accepting an administrator invitation. */
|
|
153
153
|
message?: Maybe<Scalars['String']['output']>;
|
|
154
154
|
};
|
|
155
|
+
/** Autogenerated input type of AcceptEnterpriseMemberInvitation */
|
|
156
|
+
type AcceptEnterpriseMemberInvitationInput = {
|
|
157
|
+
/** A unique identifier for the client performing the mutation. */
|
|
158
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
159
|
+
/** The id of the invitation being accepted */
|
|
160
|
+
invitationId: Scalars['ID']['input'];
|
|
161
|
+
};
|
|
162
|
+
/** Autogenerated return type of AcceptEnterpriseMemberInvitation. */
|
|
163
|
+
type AcceptEnterpriseMemberInvitationPayload = {
|
|
164
|
+
__typename?: 'AcceptEnterpriseMemberInvitationPayload';
|
|
165
|
+
/** A unique identifier for the client performing the mutation. */
|
|
166
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
167
|
+
/** The invitation that was accepted. */
|
|
168
|
+
invitation?: Maybe<EnterpriseMemberInvitation>;
|
|
169
|
+
/** A message confirming the result of accepting an unaffiliated member invitation. */
|
|
170
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
171
|
+
};
|
|
155
172
|
/** Autogenerated input type of AcceptTopicSuggestion */
|
|
156
173
|
type AcceptTopicSuggestionInput = {
|
|
157
174
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -173,7 +190,7 @@ type AcceptTopicSuggestionInput = {
|
|
|
173
190
|
*/
|
|
174
191
|
repositoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
175
192
|
};
|
|
176
|
-
/** Autogenerated return type of AcceptTopicSuggestion */
|
|
193
|
+
/** Autogenerated return type of AcceptTopicSuggestion. */
|
|
177
194
|
type AcceptTopicSuggestionPayload = {
|
|
178
195
|
__typename?: 'AcceptTopicSuggestionPayload';
|
|
179
196
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -228,7 +245,7 @@ type AddAssigneesToAssignableInput = {
|
|
|
228
245
|
/** A unique identifier for the client performing the mutation. */
|
|
229
246
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
230
247
|
};
|
|
231
|
-
/** Autogenerated return type of AddAssigneesToAssignable */
|
|
248
|
+
/** Autogenerated return type of AddAssigneesToAssignable. */
|
|
232
249
|
type AddAssigneesToAssignablePayload = {
|
|
233
250
|
__typename?: 'AddAssigneesToAssignablePayload';
|
|
234
251
|
/** The item that was assigned. */
|
|
@@ -245,7 +262,7 @@ type AddCommentInput = {
|
|
|
245
262
|
/** The Node ID of the subject to modify. */
|
|
246
263
|
subjectId: Scalars['ID']['input'];
|
|
247
264
|
};
|
|
248
|
-
/** Autogenerated return type of AddComment */
|
|
265
|
+
/** Autogenerated return type of AddComment. */
|
|
249
266
|
type AddCommentPayload = {
|
|
250
267
|
__typename?: 'AddCommentPayload';
|
|
251
268
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -253,7 +270,7 @@ type AddCommentPayload = {
|
|
|
253
270
|
/** The edge from the subject's comment connection. */
|
|
254
271
|
commentEdge?: Maybe<IssueCommentEdge>;
|
|
255
272
|
/** The subject */
|
|
256
|
-
subject?: Maybe<AddedToMergeQueueEvent | AddedToProjectEvent | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | Cwe | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OidcProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | PinnedDiscussion | PinnedEvent | PinnedIssue | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamDiscussion | TeamDiscussionComment | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile>;
|
|
273
|
+
subject?: Maybe<AddedToMergeQueueEvent | AddedToProjectEvent | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | Cwe | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OidcProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamDiscussion | TeamDiscussionComment | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile>;
|
|
257
274
|
/** The edge from the subject's timeline connection. */
|
|
258
275
|
timelineEdge?: Maybe<IssueTimelineItemEdge>;
|
|
259
276
|
};
|
|
@@ -268,7 +285,7 @@ type AddDiscussionCommentInput = {
|
|
|
268
285
|
/** The Node ID of the discussion comment within this discussion to reply to. */
|
|
269
286
|
replyToId?: InputMaybe<Scalars['ID']['input']>;
|
|
270
287
|
};
|
|
271
|
-
/** Autogenerated return type of AddDiscussionComment */
|
|
288
|
+
/** Autogenerated return type of AddDiscussionComment. */
|
|
272
289
|
type AddDiscussionCommentPayload = {
|
|
273
290
|
__typename?: 'AddDiscussionCommentPayload';
|
|
274
291
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -283,7 +300,7 @@ type AddDiscussionPollVoteInput = {
|
|
|
283
300
|
/** The Node ID of the discussion poll option to vote for. */
|
|
284
301
|
pollOptionId: Scalars['ID']['input'];
|
|
285
302
|
};
|
|
286
|
-
/** Autogenerated return type of AddDiscussionPollVote */
|
|
303
|
+
/** Autogenerated return type of AddDiscussionPollVote. */
|
|
287
304
|
type AddDiscussionPollVotePayload = {
|
|
288
305
|
__typename?: 'AddDiscussionPollVotePayload';
|
|
289
306
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -304,7 +321,7 @@ type AddEnterpriseOrganizationMemberInput = {
|
|
|
304
321
|
/** The IDs of the enterprise members to add. */
|
|
305
322
|
userIds: Array<Scalars['ID']['input']>;
|
|
306
323
|
};
|
|
307
|
-
/** Autogenerated return type of AddEnterpriseOrganizationMember */
|
|
324
|
+
/** Autogenerated return type of AddEnterpriseOrganizationMember. */
|
|
308
325
|
type AddEnterpriseOrganizationMemberPayload = {
|
|
309
326
|
__typename?: 'AddEnterpriseOrganizationMemberPayload';
|
|
310
327
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -321,7 +338,7 @@ type AddEnterpriseSupportEntitlementInput = {
|
|
|
321
338
|
/** The login of a member who will receive the support entitlement. */
|
|
322
339
|
login: Scalars['String']['input'];
|
|
323
340
|
};
|
|
324
|
-
/** Autogenerated return type of AddEnterpriseSupportEntitlement */
|
|
341
|
+
/** Autogenerated return type of AddEnterpriseSupportEntitlement. */
|
|
325
342
|
type AddEnterpriseSupportEntitlementPayload = {
|
|
326
343
|
__typename?: 'AddEnterpriseSupportEntitlementPayload';
|
|
327
344
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -338,7 +355,7 @@ type AddLabelsToLabelableInput = {
|
|
|
338
355
|
/** The id of the labelable object to add labels to. */
|
|
339
356
|
labelableId: Scalars['ID']['input'];
|
|
340
357
|
};
|
|
341
|
-
/** Autogenerated return type of AddLabelsToLabelable */
|
|
358
|
+
/** Autogenerated return type of AddLabelsToLabelable. */
|
|
342
359
|
type AddLabelsToLabelablePayload = {
|
|
343
360
|
__typename?: 'AddLabelsToLabelablePayload';
|
|
344
361
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -357,7 +374,7 @@ type AddProjectCardInput = {
|
|
|
357
374
|
/** The Node ID of the ProjectColumn. */
|
|
358
375
|
projectColumnId: Scalars['ID']['input'];
|
|
359
376
|
};
|
|
360
|
-
/** Autogenerated return type of AddProjectCard */
|
|
377
|
+
/** Autogenerated return type of AddProjectCard. */
|
|
361
378
|
type AddProjectCardPayload = {
|
|
362
379
|
__typename?: 'AddProjectCardPayload';
|
|
363
380
|
/** The edge from the ProjectColumn's card connection. */
|
|
@@ -376,7 +393,7 @@ type AddProjectColumnInput = {
|
|
|
376
393
|
/** The Node ID of the project. */
|
|
377
394
|
projectId: Scalars['ID']['input'];
|
|
378
395
|
};
|
|
379
|
-
/** Autogenerated return type of AddProjectColumn */
|
|
396
|
+
/** Autogenerated return type of AddProjectColumn. */
|
|
380
397
|
type AddProjectColumnPayload = {
|
|
381
398
|
__typename?: 'AddProjectColumnPayload';
|
|
382
399
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -402,7 +419,7 @@ type AddProjectV2DraftIssueInput = {
|
|
|
402
419
|
*/
|
|
403
420
|
title: Scalars['String']['input'];
|
|
404
421
|
};
|
|
405
|
-
/** Autogenerated return type of AddProjectV2DraftIssue */
|
|
422
|
+
/** Autogenerated return type of AddProjectV2DraftIssue. */
|
|
406
423
|
type AddProjectV2DraftIssuePayload = {
|
|
407
424
|
__typename?: 'AddProjectV2DraftIssuePayload';
|
|
408
425
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -419,7 +436,7 @@ type AddProjectV2ItemByIdInput = {
|
|
|
419
436
|
/** The ID of the Project to add the item to. */
|
|
420
437
|
projectId: Scalars['ID']['input'];
|
|
421
438
|
};
|
|
422
|
-
/** Autogenerated return type of AddProjectV2ItemById */
|
|
439
|
+
/** Autogenerated return type of AddProjectV2ItemById. */
|
|
423
440
|
type AddProjectV2ItemByIdPayload = {
|
|
424
441
|
__typename?: 'AddProjectV2ItemByIdPayload';
|
|
425
442
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -490,7 +507,7 @@ type AddPullRequestReviewCommentInput = {
|
|
|
490
507
|
*/
|
|
491
508
|
pullRequestReviewId?: InputMaybe<Scalars['ID']['input']>;
|
|
492
509
|
};
|
|
493
|
-
/** Autogenerated return type of AddPullRequestReviewComment */
|
|
510
|
+
/** Autogenerated return type of AddPullRequestReviewComment. */
|
|
494
511
|
type AddPullRequestReviewCommentPayload = {
|
|
495
512
|
__typename?: 'AddPullRequestReviewCommentPayload';
|
|
496
513
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -523,7 +540,7 @@ type AddPullRequestReviewInput = {
|
|
|
523
540
|
/** The review line comment threads. */
|
|
524
541
|
threads?: InputMaybe<Array<InputMaybe<DraftPullRequestReviewThread>>>;
|
|
525
542
|
};
|
|
526
|
-
/** Autogenerated return type of AddPullRequestReview */
|
|
543
|
+
/** Autogenerated return type of AddPullRequestReview. */
|
|
527
544
|
type AddPullRequestReviewPayload = {
|
|
528
545
|
__typename?: 'AddPullRequestReviewPayload';
|
|
529
546
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -559,7 +576,7 @@ type AddPullRequestReviewThreadInput = {
|
|
|
559
576
|
/** The level at which the comments in the corresponding thread are targeted, can be a diff line or a file */
|
|
560
577
|
subjectType?: InputMaybe<PullRequestReviewThreadSubjectType>;
|
|
561
578
|
};
|
|
562
|
-
/** Autogenerated return type of AddPullRequestReviewThread */
|
|
579
|
+
/** Autogenerated return type of AddPullRequestReviewThread. */
|
|
563
580
|
type AddPullRequestReviewThreadPayload = {
|
|
564
581
|
__typename?: 'AddPullRequestReviewThreadPayload';
|
|
565
582
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -578,7 +595,7 @@ type AddPullRequestReviewThreadReplyInput = {
|
|
|
578
595
|
/** The Node ID of the thread to which this reply is being written. */
|
|
579
596
|
pullRequestReviewThreadId: Scalars['ID']['input'];
|
|
580
597
|
};
|
|
581
|
-
/** Autogenerated return type of AddPullRequestReviewThreadReply */
|
|
598
|
+
/** Autogenerated return type of AddPullRequestReviewThreadReply. */
|
|
582
599
|
type AddPullRequestReviewThreadReplyPayload = {
|
|
583
600
|
__typename?: 'AddPullRequestReviewThreadReplyPayload';
|
|
584
601
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -595,7 +612,7 @@ type AddReactionInput = {
|
|
|
595
612
|
/** The Node ID of the subject to modify. */
|
|
596
613
|
subjectId: Scalars['ID']['input'];
|
|
597
614
|
};
|
|
598
|
-
/** Autogenerated return type of AddReaction */
|
|
615
|
+
/** Autogenerated return type of AddReaction. */
|
|
599
616
|
type AddReactionPayload = {
|
|
600
617
|
__typename?: 'AddReactionPayload';
|
|
601
618
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -614,7 +631,7 @@ type AddStarInput = {
|
|
|
614
631
|
/** The Starrable ID to star. */
|
|
615
632
|
starrableId: Scalars['ID']['input'];
|
|
616
633
|
};
|
|
617
|
-
/** Autogenerated return type of AddStar */
|
|
634
|
+
/** Autogenerated return type of AddStar. */
|
|
618
635
|
type AddStarPayload = {
|
|
619
636
|
__typename?: 'AddStarPayload';
|
|
620
637
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -629,7 +646,7 @@ type AddUpvoteInput = {
|
|
|
629
646
|
/** The Node ID of the discussion or comment to upvote. */
|
|
630
647
|
subjectId: Scalars['ID']['input'];
|
|
631
648
|
};
|
|
632
|
-
/** Autogenerated return type of AddUpvote */
|
|
649
|
+
/** Autogenerated return type of AddUpvote. */
|
|
633
650
|
type AddUpvotePayload = {
|
|
634
651
|
__typename?: 'AddUpvotePayload';
|
|
635
652
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -646,7 +663,7 @@ type AddVerifiableDomainInput = {
|
|
|
646
663
|
/** The ID of the owner to add the domain to */
|
|
647
664
|
ownerId: Scalars['ID']['input'];
|
|
648
665
|
};
|
|
649
|
-
/** Autogenerated return type of AddVerifiableDomain */
|
|
666
|
+
/** Autogenerated return type of AddVerifiableDomain. */
|
|
650
667
|
type AddVerifiableDomainPayload = {
|
|
651
668
|
__typename?: 'AddVerifiableDomainPayload';
|
|
652
669
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -692,6 +709,8 @@ type AddedToProjectEvent = Node & {
|
|
|
692
709
|
type AnnouncementBanner = {
|
|
693
710
|
/** The text of the announcement */
|
|
694
711
|
announcement?: Maybe<Scalars['String']['output']>;
|
|
712
|
+
/** The date the announcement was created */
|
|
713
|
+
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
695
714
|
/** The expiration date of the announcement, if any */
|
|
696
715
|
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
697
716
|
/** Whether the announcement can be dismissed by the user */
|
|
@@ -746,7 +765,7 @@ type ApproveDeploymentsInput = {
|
|
|
746
765
|
/** The node ID of the workflow run containing the pending deployments. */
|
|
747
766
|
workflowRunId: Scalars['ID']['input'];
|
|
748
767
|
};
|
|
749
|
-
/** Autogenerated return type of ApproveDeployments */
|
|
768
|
+
/** Autogenerated return type of ApproveDeployments. */
|
|
750
769
|
type ApproveDeploymentsPayload = {
|
|
751
770
|
__typename?: 'ApproveDeploymentsPayload';
|
|
752
771
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -761,7 +780,7 @@ type ApproveVerifiableDomainInput = {
|
|
|
761
780
|
/** The ID of the verifiable domain to approve. */
|
|
762
781
|
id: Scalars['ID']['input'];
|
|
763
782
|
};
|
|
764
|
-
/** Autogenerated return type of ApproveVerifiableDomain */
|
|
783
|
+
/** Autogenerated return type of ApproveVerifiableDomain. */
|
|
765
784
|
type ApproveVerifiableDomainPayload = {
|
|
766
785
|
__typename?: 'ApproveVerifiableDomainPayload';
|
|
767
786
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -778,7 +797,7 @@ type ArchiveProjectV2ItemInput = {
|
|
|
778
797
|
/** The ID of the Project to archive the item from. */
|
|
779
798
|
projectId: Scalars['ID']['input'];
|
|
780
799
|
};
|
|
781
|
-
/** Autogenerated return type of ArchiveProjectV2Item */
|
|
800
|
+
/** Autogenerated return type of ArchiveProjectV2Item. */
|
|
782
801
|
type ArchiveProjectV2ItemPayload = {
|
|
783
802
|
__typename?: 'ArchiveProjectV2ItemPayload';
|
|
784
803
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -793,7 +812,7 @@ type ArchiveRepositoryInput = {
|
|
|
793
812
|
/** The ID of the repository to mark as archived. */
|
|
794
813
|
repositoryId: Scalars['ID']['input'];
|
|
795
814
|
};
|
|
796
|
-
/** Autogenerated return type of ArchiveRepository */
|
|
815
|
+
/** Autogenerated return type of ArchiveRepository. */
|
|
797
816
|
type ArchiveRepositoryPayload = {
|
|
798
817
|
__typename?: 'ArchiveRepositoryPayload';
|
|
799
818
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1428,7 +1447,7 @@ type CancelEnterpriseAdminInvitationInput = {
|
|
|
1428
1447
|
/** The Node ID of the pending enterprise administrator invitation. */
|
|
1429
1448
|
invitationId: Scalars['ID']['input'];
|
|
1430
1449
|
};
|
|
1431
|
-
/** Autogenerated return type of CancelEnterpriseAdminInvitation */
|
|
1450
|
+
/** Autogenerated return type of CancelEnterpriseAdminInvitation. */
|
|
1432
1451
|
type CancelEnterpriseAdminInvitationPayload = {
|
|
1433
1452
|
__typename?: 'CancelEnterpriseAdminInvitationPayload';
|
|
1434
1453
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1438,6 +1457,23 @@ type CancelEnterpriseAdminInvitationPayload = {
|
|
|
1438
1457
|
/** A message confirming the result of canceling an administrator invitation. */
|
|
1439
1458
|
message?: Maybe<Scalars['String']['output']>;
|
|
1440
1459
|
};
|
|
1460
|
+
/** Autogenerated input type of CancelEnterpriseMemberInvitation */
|
|
1461
|
+
type CancelEnterpriseMemberInvitationInput = {
|
|
1462
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1463
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
1464
|
+
/** The Node ID of the pending enterprise member invitation. */
|
|
1465
|
+
invitationId: Scalars['ID']['input'];
|
|
1466
|
+
};
|
|
1467
|
+
/** Autogenerated return type of CancelEnterpriseMemberInvitation. */
|
|
1468
|
+
type CancelEnterpriseMemberInvitationPayload = {
|
|
1469
|
+
__typename?: 'CancelEnterpriseMemberInvitationPayload';
|
|
1470
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1471
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1472
|
+
/** The invitation that was canceled. */
|
|
1473
|
+
invitation?: Maybe<EnterpriseMemberInvitation>;
|
|
1474
|
+
/** A message confirming the result of canceling an member invitation. */
|
|
1475
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
1476
|
+
};
|
|
1441
1477
|
/** Autogenerated input type of CancelSponsorship */
|
|
1442
1478
|
type CancelSponsorshipInput = {
|
|
1443
1479
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1457,7 +1493,7 @@ type CancelSponsorshipInput = {
|
|
|
1457
1493
|
/** The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given. */
|
|
1458
1494
|
sponsorableLogin?: InputMaybe<Scalars['String']['input']>;
|
|
1459
1495
|
};
|
|
1460
|
-
/** Autogenerated return type of CancelSponsorship */
|
|
1496
|
+
/** Autogenerated return type of CancelSponsorship. */
|
|
1461
1497
|
type CancelSponsorshipPayload = {
|
|
1462
1498
|
__typename?: 'CancelSponsorshipPayload';
|
|
1463
1499
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1483,7 +1519,7 @@ type ChangeUserStatusInput = {
|
|
|
1483
1519
|
*/
|
|
1484
1520
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
1485
1521
|
};
|
|
1486
|
-
/** Autogenerated return type of ChangeUserStatus */
|
|
1522
|
+
/** Autogenerated return type of ChangeUserStatus. */
|
|
1487
1523
|
type ChangeUserStatusPayload = {
|
|
1488
1524
|
__typename?: 'ChangeUserStatusPayload';
|
|
1489
1525
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1934,7 +1970,7 @@ type ClearLabelsFromLabelableInput = {
|
|
|
1934
1970
|
/** The id of the labelable object to clear the labels from. */
|
|
1935
1971
|
labelableId: Scalars['ID']['input'];
|
|
1936
1972
|
};
|
|
1937
|
-
/** Autogenerated return type of ClearLabelsFromLabelable */
|
|
1973
|
+
/** Autogenerated return type of ClearLabelsFromLabelable. */
|
|
1938
1974
|
type ClearLabelsFromLabelablePayload = {
|
|
1939
1975
|
__typename?: 'ClearLabelsFromLabelablePayload';
|
|
1940
1976
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1953,7 +1989,7 @@ type ClearProjectV2ItemFieldValueInput = {
|
|
|
1953
1989
|
/** The ID of the Project. */
|
|
1954
1990
|
projectId: Scalars['ID']['input'];
|
|
1955
1991
|
};
|
|
1956
|
-
/** Autogenerated return type of ClearProjectV2ItemFieldValue */
|
|
1992
|
+
/** Autogenerated return type of ClearProjectV2ItemFieldValue. */
|
|
1957
1993
|
type ClearProjectV2ItemFieldValuePayload = {
|
|
1958
1994
|
__typename?: 'ClearProjectV2ItemFieldValuePayload';
|
|
1959
1995
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1978,7 +2014,7 @@ type CloneProjectInput = {
|
|
|
1978
2014
|
/** The owner ID to create the project under. */
|
|
1979
2015
|
targetOwnerId: Scalars['ID']['input'];
|
|
1980
2016
|
};
|
|
1981
|
-
/** Autogenerated return type of CloneProject */
|
|
2017
|
+
/** Autogenerated return type of CloneProject. */
|
|
1982
2018
|
type CloneProjectPayload = {
|
|
1983
2019
|
__typename?: 'CloneProjectPayload';
|
|
1984
2020
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2008,7 +2044,7 @@ type CloneTemplateRepositoryInput = {
|
|
|
2008
2044
|
/** Indicates the repository's visibility level. */
|
|
2009
2045
|
visibility: RepositoryVisibility;
|
|
2010
2046
|
};
|
|
2011
|
-
/** Autogenerated return type of CloneTemplateRepository */
|
|
2047
|
+
/** Autogenerated return type of CloneTemplateRepository. */
|
|
2012
2048
|
type CloneTemplateRepositoryPayload = {
|
|
2013
2049
|
__typename?: 'CloneTemplateRepositoryPayload';
|
|
2014
2050
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2036,7 +2072,7 @@ type CloseDiscussionInput = {
|
|
|
2036
2072
|
/** The reason why the discussion is being closed. */
|
|
2037
2073
|
reason?: InputMaybe<DiscussionCloseReason>;
|
|
2038
2074
|
};
|
|
2039
|
-
/** Autogenerated return type of CloseDiscussion */
|
|
2075
|
+
/** Autogenerated return type of CloseDiscussion. */
|
|
2040
2076
|
type CloseDiscussionPayload = {
|
|
2041
2077
|
__typename?: 'CloseDiscussionPayload';
|
|
2042
2078
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2053,7 +2089,7 @@ type CloseIssueInput = {
|
|
|
2053
2089
|
/** The reason the issue is to be closed. */
|
|
2054
2090
|
stateReason?: InputMaybe<IssueClosedStateReason>;
|
|
2055
2091
|
};
|
|
2056
|
-
/** Autogenerated return type of CloseIssue */
|
|
2092
|
+
/** Autogenerated return type of CloseIssue. */
|
|
2057
2093
|
type CloseIssuePayload = {
|
|
2058
2094
|
__typename?: 'CloseIssuePayload';
|
|
2059
2095
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2068,7 +2104,7 @@ type ClosePullRequestInput = {
|
|
|
2068
2104
|
/** ID of the pull request to be closed. */
|
|
2069
2105
|
pullRequestId: Scalars['ID']['input'];
|
|
2070
2106
|
};
|
|
2071
|
-
/** Autogenerated return type of ClosePullRequest */
|
|
2107
|
+
/** Autogenerated return type of ClosePullRequest. */
|
|
2072
2108
|
type ClosePullRequestPayload = {
|
|
2073
2109
|
__typename?: 'ClosePullRequestPayload';
|
|
2074
2110
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3144,7 +3180,7 @@ type ConvertProjectCardNoteToIssueInput = {
|
|
|
3144
3180
|
/** The title of the newly created issue. Defaults to the card's note text. */
|
|
3145
3181
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
3146
3182
|
};
|
|
3147
|
-
/** Autogenerated return type of ConvertProjectCardNoteToIssue */
|
|
3183
|
+
/** Autogenerated return type of ConvertProjectCardNoteToIssue. */
|
|
3148
3184
|
type ConvertProjectCardNoteToIssuePayload = {
|
|
3149
3185
|
__typename?: 'ConvertProjectCardNoteToIssuePayload';
|
|
3150
3186
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3159,7 +3195,7 @@ type ConvertPullRequestToDraftInput = {
|
|
|
3159
3195
|
/** ID of the pull request to convert to draft */
|
|
3160
3196
|
pullRequestId: Scalars['ID']['input'];
|
|
3161
3197
|
};
|
|
3162
|
-
/** Autogenerated return type of ConvertPullRequestToDraft */
|
|
3198
|
+
/** Autogenerated return type of ConvertPullRequestToDraft. */
|
|
3163
3199
|
type ConvertPullRequestToDraftPayload = {
|
|
3164
3200
|
__typename?: 'ConvertPullRequestToDraftPayload';
|
|
3165
3201
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3213,6 +3249,18 @@ type ConvertedToDiscussionEvent = Node & {
|
|
|
3213
3249
|
/** The Node ID of the ConvertedToDiscussionEvent object */
|
|
3214
3250
|
id: Scalars['ID']['output'];
|
|
3215
3251
|
};
|
|
3252
|
+
/** Copilot endpoint information */
|
|
3253
|
+
type CopilotEndpoints = {
|
|
3254
|
+
__typename?: 'CopilotEndpoints';
|
|
3255
|
+
/** Copilot API endpoint */
|
|
3256
|
+
api: Scalars['String']['output'];
|
|
3257
|
+
/** Copilot origin tracker endpoint */
|
|
3258
|
+
originTracker: Scalars['String']['output'];
|
|
3259
|
+
/** Copilot proxy endpoint */
|
|
3260
|
+
proxy: Scalars['String']['output'];
|
|
3261
|
+
/** Copilot telemetry endpoint */
|
|
3262
|
+
telemetry: Scalars['String']['output'];
|
|
3263
|
+
};
|
|
3216
3264
|
/** Autogenerated input type of CopyProjectV2 */
|
|
3217
3265
|
type CopyProjectV2Input = {
|
|
3218
3266
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3226,7 +3274,7 @@ type CopyProjectV2Input = {
|
|
|
3226
3274
|
/** The title of the project. */
|
|
3227
3275
|
title: Scalars['String']['input'];
|
|
3228
3276
|
};
|
|
3229
|
-
/** Autogenerated return type of CopyProjectV2 */
|
|
3277
|
+
/** Autogenerated return type of CopyProjectV2. */
|
|
3230
3278
|
type CopyProjectV2Payload = {
|
|
3231
3279
|
__typename?: 'CopyProjectV2Payload';
|
|
3232
3280
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3245,7 +3293,7 @@ type CreateAttributionInvitationInput = {
|
|
|
3245
3293
|
/** The Node ID of the account which may claim the data. */
|
|
3246
3294
|
targetId: Scalars['ID']['input'];
|
|
3247
3295
|
};
|
|
3248
|
-
/** Autogenerated return type of CreateAttributionInvitation */
|
|
3296
|
+
/** Autogenerated return type of CreateAttributionInvitation. */
|
|
3249
3297
|
type CreateAttributionInvitationPayload = {
|
|
3250
3298
|
__typename?: 'CreateAttributionInvitationPayload';
|
|
3251
3299
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3321,7 +3369,7 @@ type CreateBranchProtectionRuleInput = {
|
|
|
3321
3369
|
/** A list of User, Team, or App IDs allowed to dismiss reviews on pull requests targeting matching branches. */
|
|
3322
3370
|
reviewDismissalActorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3323
3371
|
};
|
|
3324
|
-
/** Autogenerated return type of CreateBranchProtectionRule */
|
|
3372
|
+
/** Autogenerated return type of CreateBranchProtectionRule. */
|
|
3325
3373
|
type CreateBranchProtectionRulePayload = {
|
|
3326
3374
|
__typename?: 'CreateBranchProtectionRulePayload';
|
|
3327
3375
|
/** The newly created BranchProtectionRule. */
|
|
@@ -3356,7 +3404,7 @@ type CreateCheckRunInput = {
|
|
|
3356
3404
|
/** The current status. */
|
|
3357
3405
|
status?: InputMaybe<RequestableCheckStatusState>;
|
|
3358
3406
|
};
|
|
3359
|
-
/** Autogenerated return type of CreateCheckRun */
|
|
3407
|
+
/** Autogenerated return type of CreateCheckRun. */
|
|
3360
3408
|
type CreateCheckRunPayload = {
|
|
3361
3409
|
__typename?: 'CreateCheckRunPayload';
|
|
3362
3410
|
/** The newly created check run. */
|
|
@@ -3373,7 +3421,7 @@ type CreateCheckSuiteInput = {
|
|
|
3373
3421
|
/** The Node ID of the repository. */
|
|
3374
3422
|
repositoryId: Scalars['ID']['input'];
|
|
3375
3423
|
};
|
|
3376
|
-
/** Autogenerated return type of CreateCheckSuite */
|
|
3424
|
+
/** Autogenerated return type of CreateCheckSuite. */
|
|
3377
3425
|
type CreateCheckSuitePayload = {
|
|
3378
3426
|
__typename?: 'CreateCheckSuitePayload';
|
|
3379
3427
|
/** The newly created check suite. */
|
|
@@ -3394,7 +3442,7 @@ type CreateCommitOnBranchInput = {
|
|
|
3394
3442
|
/** The commit message the be included with the commit. */
|
|
3395
3443
|
message: CommitMessage;
|
|
3396
3444
|
};
|
|
3397
|
-
/** Autogenerated return type of CreateCommitOnBranch */
|
|
3445
|
+
/** Autogenerated return type of CreateCommitOnBranch. */
|
|
3398
3446
|
type CreateCommitOnBranchPayload = {
|
|
3399
3447
|
__typename?: 'CreateCommitOnBranchPayload';
|
|
3400
3448
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3428,7 +3476,7 @@ type CreateDeploymentInput = {
|
|
|
3428
3476
|
/** Specifies a task to execute. */
|
|
3429
3477
|
task?: InputMaybe<Scalars['String']['input']>;
|
|
3430
3478
|
};
|
|
3431
|
-
/** Autogenerated return type of CreateDeployment */
|
|
3479
|
+
/** Autogenerated return type of CreateDeployment. */
|
|
3432
3480
|
type CreateDeploymentPayload = {
|
|
3433
3481
|
__typename?: 'CreateDeploymentPayload';
|
|
3434
3482
|
/** True if the default branch has been auto-merged into the deployment ref. */
|
|
@@ -3465,7 +3513,7 @@ type CreateDeploymentStatusInput = {
|
|
|
3465
3513
|
/** The state of the deployment. */
|
|
3466
3514
|
state: DeploymentStatusState;
|
|
3467
3515
|
};
|
|
3468
|
-
/** Autogenerated return type of CreateDeploymentStatus */
|
|
3516
|
+
/** Autogenerated return type of CreateDeploymentStatus. */
|
|
3469
3517
|
type CreateDeploymentStatusPayload = {
|
|
3470
3518
|
__typename?: 'CreateDeploymentStatusPayload';
|
|
3471
3519
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3486,7 +3534,7 @@ type CreateDiscussionInput = {
|
|
|
3486
3534
|
/** The title of the discussion. */
|
|
3487
3535
|
title: Scalars['String']['input'];
|
|
3488
3536
|
};
|
|
3489
|
-
/** Autogenerated return type of CreateDiscussion */
|
|
3537
|
+
/** Autogenerated return type of CreateDiscussion. */
|
|
3490
3538
|
type CreateDiscussionPayload = {
|
|
3491
3539
|
__typename?: 'CreateDiscussionPayload';
|
|
3492
3540
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3509,7 +3557,7 @@ type CreateEnterpriseOrganizationInput = {
|
|
|
3509
3557
|
/** The profile name of the new organization. */
|
|
3510
3558
|
profileName: Scalars['String']['input'];
|
|
3511
3559
|
};
|
|
3512
|
-
/** Autogenerated return type of CreateEnterpriseOrganization */
|
|
3560
|
+
/** Autogenerated return type of CreateEnterpriseOrganization. */
|
|
3513
3561
|
type CreateEnterpriseOrganizationPayload = {
|
|
3514
3562
|
__typename?: 'CreateEnterpriseOrganizationPayload';
|
|
3515
3563
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3528,7 +3576,7 @@ type CreateEnvironmentInput = {
|
|
|
3528
3576
|
/** The node ID of the repository. */
|
|
3529
3577
|
repositoryId: Scalars['ID']['input'];
|
|
3530
3578
|
};
|
|
3531
|
-
/** Autogenerated return type of CreateEnvironment */
|
|
3579
|
+
/** Autogenerated return type of CreateEnvironment. */
|
|
3532
3580
|
type CreateEnvironmentPayload = {
|
|
3533
3581
|
__typename?: 'CreateEnvironmentPayload';
|
|
3534
3582
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3549,7 +3597,7 @@ type CreateIpAllowListEntryInput = {
|
|
|
3549
3597
|
/** The ID of the owner for which to create the new IP allow list entry. */
|
|
3550
3598
|
ownerId: Scalars['ID']['input'];
|
|
3551
3599
|
};
|
|
3552
|
-
/** Autogenerated return type of CreateIpAllowListEntry */
|
|
3600
|
+
/** Autogenerated return type of CreateIpAllowListEntry. */
|
|
3553
3601
|
type CreateIpAllowListEntryPayload = {
|
|
3554
3602
|
__typename?: 'CreateIpAllowListEntryPayload';
|
|
3555
3603
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3578,7 +3626,7 @@ type CreateIssueInput = {
|
|
|
3578
3626
|
/** The title for the issue. */
|
|
3579
3627
|
title: Scalars['String']['input'];
|
|
3580
3628
|
};
|
|
3581
|
-
/** Autogenerated return type of CreateIssue */
|
|
3629
|
+
/** Autogenerated return type of CreateIssue. */
|
|
3582
3630
|
type CreateIssuePayload = {
|
|
3583
3631
|
__typename?: 'CreateIssuePayload';
|
|
3584
3632
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3599,7 +3647,7 @@ type CreateLabelInput = {
|
|
|
3599
3647
|
/** The Node ID of the repository. */
|
|
3600
3648
|
repositoryId: Scalars['ID']['input'];
|
|
3601
3649
|
};
|
|
3602
|
-
/** Autogenerated return type of CreateLabel */
|
|
3650
|
+
/** Autogenerated return type of CreateLabel. */
|
|
3603
3651
|
type CreateLabelPayload = {
|
|
3604
3652
|
__typename?: 'CreateLabelPayload';
|
|
3605
3653
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3620,7 +3668,7 @@ type CreateLinkedBranchInput = {
|
|
|
3620
3668
|
/** ID of the repository to create the branch in. Defaults to the issue repository. */
|
|
3621
3669
|
repositoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
3622
3670
|
};
|
|
3623
|
-
/** Autogenerated return type of CreateLinkedBranch */
|
|
3671
|
+
/** Autogenerated return type of CreateLinkedBranch. */
|
|
3624
3672
|
type CreateLinkedBranchPayload = {
|
|
3625
3673
|
__typename?: 'CreateLinkedBranchPayload';
|
|
3626
3674
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3647,7 +3695,7 @@ type CreateMigrationSourceInput = {
|
|
|
3647
3695
|
/** The migration source URL, for example `https://github.com` or `https://monalisa.ghe.com`. */
|
|
3648
3696
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
3649
3697
|
};
|
|
3650
|
-
/** Autogenerated return type of CreateMigrationSource */
|
|
3698
|
+
/** Autogenerated return type of CreateMigrationSource. */
|
|
3651
3699
|
type CreateMigrationSourcePayload = {
|
|
3652
3700
|
__typename?: 'CreateMigrationSourcePayload';
|
|
3653
3701
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3670,7 +3718,7 @@ type CreateProjectInput = {
|
|
|
3670
3718
|
/** The name of the GitHub-provided template. */
|
|
3671
3719
|
template?: InputMaybe<ProjectTemplate>;
|
|
3672
3720
|
};
|
|
3673
|
-
/** Autogenerated return type of CreateProject */
|
|
3721
|
+
/** Autogenerated return type of CreateProject. */
|
|
3674
3722
|
type CreateProjectPayload = {
|
|
3675
3723
|
__typename?: 'CreateProjectPayload';
|
|
3676
3724
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3691,7 +3739,7 @@ type CreateProjectV2FieldInput = {
|
|
|
3691
3739
|
/** Options for a single select field. At least one value is required if data_type is SINGLE_SELECT */
|
|
3692
3740
|
singleSelectOptions?: InputMaybe<Array<ProjectV2SingleSelectFieldOptionInput>>;
|
|
3693
3741
|
};
|
|
3694
|
-
/** Autogenerated return type of CreateProjectV2Field */
|
|
3742
|
+
/** Autogenerated return type of CreateProjectV2Field. */
|
|
3695
3743
|
type CreateProjectV2FieldPayload = {
|
|
3696
3744
|
__typename?: 'CreateProjectV2FieldPayload';
|
|
3697
3745
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3712,7 +3760,7 @@ type CreateProjectV2Input = {
|
|
|
3712
3760
|
/** The title of the project. */
|
|
3713
3761
|
title: Scalars['String']['input'];
|
|
3714
3762
|
};
|
|
3715
|
-
/** Autogenerated return type of CreateProjectV2 */
|
|
3763
|
+
/** Autogenerated return type of CreateProjectV2. */
|
|
3716
3764
|
type CreateProjectV2Payload = {
|
|
3717
3765
|
__typename?: 'CreateProjectV2Payload';
|
|
3718
3766
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3748,7 +3796,7 @@ type CreatePullRequestInput = {
|
|
|
3748
3796
|
/** The title of the pull request. */
|
|
3749
3797
|
title: Scalars['String']['input'];
|
|
3750
3798
|
};
|
|
3751
|
-
/** Autogenerated return type of CreatePullRequest */
|
|
3799
|
+
/** Autogenerated return type of CreatePullRequest. */
|
|
3752
3800
|
type CreatePullRequestPayload = {
|
|
3753
3801
|
__typename?: 'CreatePullRequestPayload';
|
|
3754
3802
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3767,7 +3815,7 @@ type CreateRefInput = {
|
|
|
3767
3815
|
/** The Node ID of the Repository to create the Ref in. */
|
|
3768
3816
|
repositoryId: Scalars['ID']['input'];
|
|
3769
3817
|
};
|
|
3770
|
-
/** Autogenerated return type of CreateRef */
|
|
3818
|
+
/** Autogenerated return type of CreateRef. */
|
|
3771
3819
|
type CreateRefPayload = {
|
|
3772
3820
|
__typename?: 'CreateRefPayload';
|
|
3773
3821
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3804,7 +3852,7 @@ type CreateRepositoryInput = {
|
|
|
3804
3852
|
/** Indicates the repository's visibility level. */
|
|
3805
3853
|
visibility: RepositoryVisibility;
|
|
3806
3854
|
};
|
|
3807
|
-
/** Autogenerated return type of CreateRepository */
|
|
3855
|
+
/** Autogenerated return type of CreateRepository. */
|
|
3808
3856
|
type CreateRepositoryPayload = {
|
|
3809
3857
|
__typename?: 'CreateRepositoryPayload';
|
|
3810
3858
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3831,7 +3879,7 @@ type CreateRepositoryRulesetInput = {
|
|
|
3831
3879
|
/** The target of the ruleset. */
|
|
3832
3880
|
target?: InputMaybe<RepositoryRulesetTarget>;
|
|
3833
3881
|
};
|
|
3834
|
-
/** Autogenerated return type of CreateRepositoryRuleset */
|
|
3882
|
+
/** Autogenerated return type of CreateRepositoryRuleset. */
|
|
3835
3883
|
type CreateRepositoryRulesetPayload = {
|
|
3836
3884
|
__typename?: 'CreateRepositoryRulesetPayload';
|
|
3837
3885
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3889,7 +3937,7 @@ type CreateSponsorsListingInput = {
|
|
|
3889
3937
|
*/
|
|
3890
3938
|
sponsorableLogin?: InputMaybe<Scalars['String']['input']>;
|
|
3891
3939
|
};
|
|
3892
|
-
/** Autogenerated return type of CreateSponsorsListing */
|
|
3940
|
+
/** Autogenerated return type of CreateSponsorsListing. */
|
|
3893
3941
|
type CreateSponsorsListingPayload = {
|
|
3894
3942
|
__typename?: 'CreateSponsorsListingPayload';
|
|
3895
3943
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3942,7 +3990,7 @@ type CreateSponsorsTierInput = {
|
|
|
3942
3990
|
/** Optional message new sponsors at this tier will receive. */
|
|
3943
3991
|
welcomeMessage?: InputMaybe<Scalars['String']['input']>;
|
|
3944
3992
|
};
|
|
3945
|
-
/** Autogenerated return type of CreateSponsorsTier */
|
|
3993
|
+
/** Autogenerated return type of CreateSponsorsTier. */
|
|
3946
3994
|
type CreateSponsorsTierPayload = {
|
|
3947
3995
|
__typename?: 'CreateSponsorsTierPayload';
|
|
3948
3996
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3982,7 +4030,7 @@ type CreateSponsorshipInput = {
|
|
|
3982
4030
|
/** The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified. */
|
|
3983
4031
|
tierId?: InputMaybe<Scalars['ID']['input']>;
|
|
3984
4032
|
};
|
|
3985
|
-
/** Autogenerated return type of CreateSponsorship */
|
|
4033
|
+
/** Autogenerated return type of CreateSponsorship. */
|
|
3986
4034
|
type CreateSponsorshipPayload = {
|
|
3987
4035
|
__typename?: 'CreateSponsorshipPayload';
|
|
3988
4036
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4013,7 +4061,7 @@ type CreateSponsorshipsInput = {
|
|
|
4013
4061
|
/** The list of maintainers to sponsor and for how much apiece. */
|
|
4014
4062
|
sponsorships: Array<BulkSponsorship>;
|
|
4015
4063
|
};
|
|
4016
|
-
/** Autogenerated return type of CreateSponsorships */
|
|
4064
|
+
/** Autogenerated return type of CreateSponsorships. */
|
|
4017
4065
|
type CreateSponsorshipsPayload = {
|
|
4018
4066
|
__typename?: 'CreateSponsorshipsPayload';
|
|
4019
4067
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4046,7 +4094,7 @@ type CreateTeamDiscussionCommentInput = {
|
|
|
4046
4094
|
*/
|
|
4047
4095
|
discussionId?: InputMaybe<Scalars['ID']['input']>;
|
|
4048
4096
|
};
|
|
4049
|
-
/** Autogenerated return type of CreateTeamDiscussionComment */
|
|
4097
|
+
/** Autogenerated return type of CreateTeamDiscussionComment. */
|
|
4050
4098
|
type CreateTeamDiscussionCommentPayload = {
|
|
4051
4099
|
__typename?: 'CreateTeamDiscussionCommentPayload';
|
|
4052
4100
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4104,7 +4152,7 @@ type CreateTeamDiscussionInput = {
|
|
|
4104
4152
|
*/
|
|
4105
4153
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
4106
4154
|
};
|
|
4107
|
-
/** Autogenerated return type of CreateTeamDiscussion */
|
|
4155
|
+
/** Autogenerated return type of CreateTeamDiscussion. */
|
|
4108
4156
|
type CreateTeamDiscussionPayload = {
|
|
4109
4157
|
__typename?: 'CreateTeamDiscussionPayload';
|
|
4110
4158
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4126,7 +4174,7 @@ type CreateUserListInput = {
|
|
|
4126
4174
|
/** The name of the new list */
|
|
4127
4175
|
name: Scalars['String']['input'];
|
|
4128
4176
|
};
|
|
4129
|
-
/** Autogenerated return type of CreateUserList */
|
|
4177
|
+
/** Autogenerated return type of CreateUserList. */
|
|
4130
4178
|
type CreateUserListPayload = {
|
|
4131
4179
|
__typename?: 'CreateUserListPayload';
|
|
4132
4180
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4401,7 +4449,7 @@ type DeclineTopicSuggestionInput = {
|
|
|
4401
4449
|
*/
|
|
4402
4450
|
repositoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
4403
4451
|
};
|
|
4404
|
-
/** Autogenerated return type of DeclineTopicSuggestion */
|
|
4452
|
+
/** Autogenerated return type of DeclineTopicSuggestion. */
|
|
4405
4453
|
type DeclineTopicSuggestionPayload = {
|
|
4406
4454
|
__typename?: 'DeclineTopicSuggestionPayload';
|
|
4407
4455
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4434,7 +4482,7 @@ type DeleteBranchProtectionRuleInput = {
|
|
|
4434
4482
|
/** A unique identifier for the client performing the mutation. */
|
|
4435
4483
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
4436
4484
|
};
|
|
4437
|
-
/** Autogenerated return type of DeleteBranchProtectionRule */
|
|
4485
|
+
/** Autogenerated return type of DeleteBranchProtectionRule. */
|
|
4438
4486
|
type DeleteBranchProtectionRulePayload = {
|
|
4439
4487
|
__typename?: 'DeleteBranchProtectionRulePayload';
|
|
4440
4488
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4447,7 +4495,7 @@ type DeleteDeploymentInput = {
|
|
|
4447
4495
|
/** The Node ID of the deployment to be deleted. */
|
|
4448
4496
|
id: Scalars['ID']['input'];
|
|
4449
4497
|
};
|
|
4450
|
-
/** Autogenerated return type of DeleteDeployment */
|
|
4498
|
+
/** Autogenerated return type of DeleteDeployment. */
|
|
4451
4499
|
type DeleteDeploymentPayload = {
|
|
4452
4500
|
__typename?: 'DeleteDeploymentPayload';
|
|
4453
4501
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4460,7 +4508,7 @@ type DeleteDiscussionCommentInput = {
|
|
|
4460
4508
|
/** The Node id of the discussion comment to delete. */
|
|
4461
4509
|
id: Scalars['ID']['input'];
|
|
4462
4510
|
};
|
|
4463
|
-
/** Autogenerated return type of DeleteDiscussionComment */
|
|
4511
|
+
/** Autogenerated return type of DeleteDiscussionComment. */
|
|
4464
4512
|
type DeleteDiscussionCommentPayload = {
|
|
4465
4513
|
__typename?: 'DeleteDiscussionCommentPayload';
|
|
4466
4514
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4475,7 +4523,7 @@ type DeleteDiscussionInput = {
|
|
|
4475
4523
|
/** The id of the discussion to delete. */
|
|
4476
4524
|
id: Scalars['ID']['input'];
|
|
4477
4525
|
};
|
|
4478
|
-
/** Autogenerated return type of DeleteDiscussion */
|
|
4526
|
+
/** Autogenerated return type of DeleteDiscussion. */
|
|
4479
4527
|
type DeleteDiscussionPayload = {
|
|
4480
4528
|
__typename?: 'DeleteDiscussionPayload';
|
|
4481
4529
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4490,7 +4538,7 @@ type DeleteEnvironmentInput = {
|
|
|
4490
4538
|
/** The Node ID of the environment to be deleted. */
|
|
4491
4539
|
id: Scalars['ID']['input'];
|
|
4492
4540
|
};
|
|
4493
|
-
/** Autogenerated return type of DeleteEnvironment */
|
|
4541
|
+
/** Autogenerated return type of DeleteEnvironment. */
|
|
4494
4542
|
type DeleteEnvironmentPayload = {
|
|
4495
4543
|
__typename?: 'DeleteEnvironmentPayload';
|
|
4496
4544
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4503,7 +4551,7 @@ type DeleteIpAllowListEntryInput = {
|
|
|
4503
4551
|
/** The ID of the IP allow list entry to delete. */
|
|
4504
4552
|
ipAllowListEntryId: Scalars['ID']['input'];
|
|
4505
4553
|
};
|
|
4506
|
-
/** Autogenerated return type of DeleteIpAllowListEntry */
|
|
4554
|
+
/** Autogenerated return type of DeleteIpAllowListEntry. */
|
|
4507
4555
|
type DeleteIpAllowListEntryPayload = {
|
|
4508
4556
|
__typename?: 'DeleteIpAllowListEntryPayload';
|
|
4509
4557
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4518,7 +4566,7 @@ type DeleteIssueCommentInput = {
|
|
|
4518
4566
|
/** The ID of the comment to delete. */
|
|
4519
4567
|
id: Scalars['ID']['input'];
|
|
4520
4568
|
};
|
|
4521
|
-
/** Autogenerated return type of DeleteIssueComment */
|
|
4569
|
+
/** Autogenerated return type of DeleteIssueComment. */
|
|
4522
4570
|
type DeleteIssueCommentPayload = {
|
|
4523
4571
|
__typename?: 'DeleteIssueCommentPayload';
|
|
4524
4572
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4531,7 +4579,7 @@ type DeleteIssueInput = {
|
|
|
4531
4579
|
/** The ID of the issue to delete. */
|
|
4532
4580
|
issueId: Scalars['ID']['input'];
|
|
4533
4581
|
};
|
|
4534
|
-
/** Autogenerated return type of DeleteIssue */
|
|
4582
|
+
/** Autogenerated return type of DeleteIssue. */
|
|
4535
4583
|
type DeleteIssuePayload = {
|
|
4536
4584
|
__typename?: 'DeleteIssuePayload';
|
|
4537
4585
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4546,7 +4594,7 @@ type DeleteLabelInput = {
|
|
|
4546
4594
|
/** The Node ID of the label to be deleted. */
|
|
4547
4595
|
id: Scalars['ID']['input'];
|
|
4548
4596
|
};
|
|
4549
|
-
/** Autogenerated return type of DeleteLabel */
|
|
4597
|
+
/** Autogenerated return type of DeleteLabel. */
|
|
4550
4598
|
type DeleteLabelPayload = {
|
|
4551
4599
|
__typename?: 'DeleteLabelPayload';
|
|
4552
4600
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4559,7 +4607,7 @@ type DeleteLinkedBranchInput = {
|
|
|
4559
4607
|
/** The ID of the linked branch */
|
|
4560
4608
|
linkedBranchId: Scalars['ID']['input'];
|
|
4561
4609
|
};
|
|
4562
|
-
/** Autogenerated return type of DeleteLinkedBranch */
|
|
4610
|
+
/** Autogenerated return type of DeleteLinkedBranch. */
|
|
4563
4611
|
type DeleteLinkedBranchPayload = {
|
|
4564
4612
|
__typename?: 'DeleteLinkedBranchPayload';
|
|
4565
4613
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4574,7 +4622,7 @@ type DeletePackageVersionInput = {
|
|
|
4574
4622
|
/** The ID of the package version to be deleted. */
|
|
4575
4623
|
packageVersionId: Scalars['ID']['input'];
|
|
4576
4624
|
};
|
|
4577
|
-
/** Autogenerated return type of DeletePackageVersion */
|
|
4625
|
+
/** Autogenerated return type of DeletePackageVersion. */
|
|
4578
4626
|
type DeletePackageVersionPayload = {
|
|
4579
4627
|
__typename?: 'DeletePackageVersionPayload';
|
|
4580
4628
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4589,7 +4637,7 @@ type DeleteProjectCardInput = {
|
|
|
4589
4637
|
/** A unique identifier for the client performing the mutation. */
|
|
4590
4638
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
4591
4639
|
};
|
|
4592
|
-
/** Autogenerated return type of DeleteProjectCard */
|
|
4640
|
+
/** Autogenerated return type of DeleteProjectCard. */
|
|
4593
4641
|
type DeleteProjectCardPayload = {
|
|
4594
4642
|
__typename?: 'DeleteProjectCardPayload';
|
|
4595
4643
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4606,7 +4654,7 @@ type DeleteProjectColumnInput = {
|
|
|
4606
4654
|
/** The id of the column to delete. */
|
|
4607
4655
|
columnId: Scalars['ID']['input'];
|
|
4608
4656
|
};
|
|
4609
|
-
/** Autogenerated return type of DeleteProjectColumn */
|
|
4657
|
+
/** Autogenerated return type of DeleteProjectColumn. */
|
|
4610
4658
|
type DeleteProjectColumnPayload = {
|
|
4611
4659
|
__typename?: 'DeleteProjectColumnPayload';
|
|
4612
4660
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4623,7 +4671,7 @@ type DeleteProjectInput = {
|
|
|
4623
4671
|
/** The Project ID to update. */
|
|
4624
4672
|
projectId: Scalars['ID']['input'];
|
|
4625
4673
|
};
|
|
4626
|
-
/** Autogenerated return type of DeleteProject */
|
|
4674
|
+
/** Autogenerated return type of DeleteProject. */
|
|
4627
4675
|
type DeleteProjectPayload = {
|
|
4628
4676
|
__typename?: 'DeleteProjectPayload';
|
|
4629
4677
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4638,7 +4686,7 @@ type DeleteProjectV2FieldInput = {
|
|
|
4638
4686
|
/** The ID of the field to delete. */
|
|
4639
4687
|
fieldId: Scalars['ID']['input'];
|
|
4640
4688
|
};
|
|
4641
|
-
/** Autogenerated return type of DeleteProjectV2Field */
|
|
4689
|
+
/** Autogenerated return type of DeleteProjectV2Field. */
|
|
4642
4690
|
type DeleteProjectV2FieldPayload = {
|
|
4643
4691
|
__typename?: 'DeleteProjectV2FieldPayload';
|
|
4644
4692
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4662,7 +4710,7 @@ type DeleteProjectV2ItemInput = {
|
|
|
4662
4710
|
/** The ID of the Project from which the item should be removed. */
|
|
4663
4711
|
projectId: Scalars['ID']['input'];
|
|
4664
4712
|
};
|
|
4665
|
-
/** Autogenerated return type of DeleteProjectV2Item */
|
|
4713
|
+
/** Autogenerated return type of DeleteProjectV2Item. */
|
|
4666
4714
|
type DeleteProjectV2ItemPayload = {
|
|
4667
4715
|
__typename?: 'DeleteProjectV2ItemPayload';
|
|
4668
4716
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4670,7 +4718,7 @@ type DeleteProjectV2ItemPayload = {
|
|
|
4670
4718
|
/** The ID of the deleted item. */
|
|
4671
4719
|
deletedItemId?: Maybe<Scalars['ID']['output']>;
|
|
4672
4720
|
};
|
|
4673
|
-
/** Autogenerated return type of DeleteProjectV2 */
|
|
4721
|
+
/** Autogenerated return type of DeleteProjectV2. */
|
|
4674
4722
|
type DeleteProjectV2Payload = {
|
|
4675
4723
|
__typename?: 'DeleteProjectV2Payload';
|
|
4676
4724
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4685,7 +4733,7 @@ type DeleteProjectV2WorkflowInput = {
|
|
|
4685
4733
|
/** The ID of the workflow to be removed. */
|
|
4686
4734
|
workflowId: Scalars['ID']['input'];
|
|
4687
4735
|
};
|
|
4688
|
-
/** Autogenerated return type of DeleteProjectV2Workflow */
|
|
4736
|
+
/** Autogenerated return type of DeleteProjectV2Workflow. */
|
|
4689
4737
|
type DeleteProjectV2WorkflowPayload = {
|
|
4690
4738
|
__typename?: 'DeleteProjectV2WorkflowPayload';
|
|
4691
4739
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4702,7 +4750,7 @@ type DeletePullRequestReviewCommentInput = {
|
|
|
4702
4750
|
/** The ID of the comment to delete. */
|
|
4703
4751
|
id: Scalars['ID']['input'];
|
|
4704
4752
|
};
|
|
4705
|
-
/** Autogenerated return type of DeletePullRequestReviewComment */
|
|
4753
|
+
/** Autogenerated return type of DeletePullRequestReviewComment. */
|
|
4706
4754
|
type DeletePullRequestReviewCommentPayload = {
|
|
4707
4755
|
__typename?: 'DeletePullRequestReviewCommentPayload';
|
|
4708
4756
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4719,7 +4767,7 @@ type DeletePullRequestReviewInput = {
|
|
|
4719
4767
|
/** The Node ID of the pull request review to delete. */
|
|
4720
4768
|
pullRequestReviewId: Scalars['ID']['input'];
|
|
4721
4769
|
};
|
|
4722
|
-
/** Autogenerated return type of DeletePullRequestReview */
|
|
4770
|
+
/** Autogenerated return type of DeletePullRequestReview. */
|
|
4723
4771
|
type DeletePullRequestReviewPayload = {
|
|
4724
4772
|
__typename?: 'DeletePullRequestReviewPayload';
|
|
4725
4773
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4734,7 +4782,7 @@ type DeleteRefInput = {
|
|
|
4734
4782
|
/** The Node ID of the Ref to be deleted. */
|
|
4735
4783
|
refId: Scalars['ID']['input'];
|
|
4736
4784
|
};
|
|
4737
|
-
/** Autogenerated return type of DeleteRef */
|
|
4785
|
+
/** Autogenerated return type of DeleteRef. */
|
|
4738
4786
|
type DeleteRefPayload = {
|
|
4739
4787
|
__typename?: 'DeleteRefPayload';
|
|
4740
4788
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4747,7 +4795,7 @@ type DeleteRepositoryRulesetInput = {
|
|
|
4747
4795
|
/** The global relay id of the repository ruleset to be deleted. */
|
|
4748
4796
|
repositoryRulesetId: Scalars['ID']['input'];
|
|
4749
4797
|
};
|
|
4750
|
-
/** Autogenerated return type of DeleteRepositoryRuleset */
|
|
4798
|
+
/** Autogenerated return type of DeleteRepositoryRuleset. */
|
|
4751
4799
|
type DeleteRepositoryRulesetPayload = {
|
|
4752
4800
|
__typename?: 'DeleteRepositoryRulesetPayload';
|
|
4753
4801
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4760,7 +4808,7 @@ type DeleteTeamDiscussionCommentInput = {
|
|
|
4760
4808
|
/** The ID of the comment to delete. */
|
|
4761
4809
|
id: Scalars['ID']['input'];
|
|
4762
4810
|
};
|
|
4763
|
-
/** Autogenerated return type of DeleteTeamDiscussionComment */
|
|
4811
|
+
/** Autogenerated return type of DeleteTeamDiscussionComment. */
|
|
4764
4812
|
type DeleteTeamDiscussionCommentPayload = {
|
|
4765
4813
|
__typename?: 'DeleteTeamDiscussionCommentPayload';
|
|
4766
4814
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4773,7 +4821,7 @@ type DeleteTeamDiscussionInput = {
|
|
|
4773
4821
|
/** The discussion ID to delete. */
|
|
4774
4822
|
id: Scalars['ID']['input'];
|
|
4775
4823
|
};
|
|
4776
|
-
/** Autogenerated return type of DeleteTeamDiscussion */
|
|
4824
|
+
/** Autogenerated return type of DeleteTeamDiscussion. */
|
|
4777
4825
|
type DeleteTeamDiscussionPayload = {
|
|
4778
4826
|
__typename?: 'DeleteTeamDiscussionPayload';
|
|
4779
4827
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4786,7 +4834,7 @@ type DeleteUserListInput = {
|
|
|
4786
4834
|
/** The ID of the list to delete. */
|
|
4787
4835
|
listId: Scalars['ID']['input'];
|
|
4788
4836
|
};
|
|
4789
|
-
/** Autogenerated return type of DeleteUserList */
|
|
4837
|
+
/** Autogenerated return type of DeleteUserList. */
|
|
4790
4838
|
type DeleteUserListPayload = {
|
|
4791
4839
|
__typename?: 'DeleteUserListPayload';
|
|
4792
4840
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4801,7 +4849,7 @@ type DeleteVerifiableDomainInput = {
|
|
|
4801
4849
|
/** The ID of the verifiable domain to delete. */
|
|
4802
4850
|
id: Scalars['ID']['input'];
|
|
4803
4851
|
};
|
|
4804
|
-
/** Autogenerated return type of DeleteVerifiableDomain */
|
|
4852
|
+
/** Autogenerated return type of DeleteVerifiableDomain. */
|
|
4805
4853
|
type DeleteVerifiableDomainPayload = {
|
|
4806
4854
|
__typename?: 'DeleteVerifiableDomainPayload';
|
|
4807
4855
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -5142,8 +5190,10 @@ type DeploymentProtectionRuleEdge = {
|
|
|
5142
5190
|
};
|
|
5143
5191
|
/** The possible protection rule types. */
|
|
5144
5192
|
type DeploymentProtectionRuleType =
|
|
5193
|
+
/** Branch policy */
|
|
5194
|
+
'BRANCH_POLICY'
|
|
5145
5195
|
/** Required reviewers */
|
|
5146
|
-
'REQUIRED_REVIEWERS'
|
|
5196
|
+
| 'REQUIRED_REVIEWERS'
|
|
5147
5197
|
/** Wait timer */
|
|
5148
5198
|
| 'WAIT_TIMER';
|
|
5149
5199
|
/** A request to deploy a workflow run to an environment. */
|
|
@@ -5351,7 +5401,7 @@ type DequeuePullRequestInput = {
|
|
|
5351
5401
|
/** The ID of the pull request to be dequeued. */
|
|
5352
5402
|
id: Scalars['ID']['input'];
|
|
5353
5403
|
};
|
|
5354
|
-
/** Autogenerated return type of DequeuePullRequest */
|
|
5404
|
+
/** Autogenerated return type of DequeuePullRequest. */
|
|
5355
5405
|
type DequeuePullRequestPayload = {
|
|
5356
5406
|
__typename?: 'DequeuePullRequestPayload';
|
|
5357
5407
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -5372,7 +5422,7 @@ type DisablePullRequestAutoMergeInput = {
|
|
|
5372
5422
|
/** ID of the pull request to disable auto merge on. */
|
|
5373
5423
|
pullRequestId: Scalars['ID']['input'];
|
|
5374
5424
|
};
|
|
5375
|
-
/** Autogenerated return type of DisablePullRequestAutoMerge */
|
|
5425
|
+
/** Autogenerated return type of DisablePullRequestAutoMerge. */
|
|
5376
5426
|
type DisablePullRequestAutoMergePayload = {
|
|
5377
5427
|
__typename?: 'DisablePullRequestAutoMergePayload';
|
|
5378
5428
|
/** Identifies the actor who performed the event. */
|
|
@@ -5833,7 +5883,7 @@ type DismissPullRequestReviewInput = {
|
|
|
5833
5883
|
/** The Node ID of the pull request review to modify. */
|
|
5834
5884
|
pullRequestReviewId: Scalars['ID']['input'];
|
|
5835
5885
|
};
|
|
5836
|
-
/** Autogenerated return type of DismissPullRequestReview */
|
|
5886
|
+
/** Autogenerated return type of DismissPullRequestReview. */
|
|
5837
5887
|
type DismissPullRequestReviewPayload = {
|
|
5838
5888
|
__typename?: 'DismissPullRequestReviewPayload';
|
|
5839
5889
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -5862,7 +5912,7 @@ type DismissRepositoryVulnerabilityAlertInput = {
|
|
|
5862
5912
|
/** The Dependabot alert ID to dismiss. */
|
|
5863
5913
|
repositoryVulnerabilityAlertId: Scalars['ID']['input'];
|
|
5864
5914
|
};
|
|
5865
|
-
/** Autogenerated return type of DismissRepositoryVulnerabilityAlert */
|
|
5915
|
+
/** Autogenerated return type of DismissRepositoryVulnerabilityAlert. */
|
|
5866
5916
|
type DismissRepositoryVulnerabilityAlertPayload = {
|
|
5867
5917
|
__typename?: 'DismissRepositoryVulnerabilityAlertPayload';
|
|
5868
5918
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -5969,7 +6019,7 @@ type EnablePullRequestAutoMergeInput = {
|
|
|
5969
6019
|
/** ID of the pull request to enable auto-merge on. */
|
|
5970
6020
|
pullRequestId: Scalars['ID']['input'];
|
|
5971
6021
|
};
|
|
5972
|
-
/** Autogenerated return type of EnablePullRequestAutoMerge */
|
|
6022
|
+
/** Autogenerated return type of EnablePullRequestAutoMerge. */
|
|
5973
6023
|
type EnablePullRequestAutoMergePayload = {
|
|
5974
6024
|
__typename?: 'EnablePullRequestAutoMergePayload';
|
|
5975
6025
|
/** Identifies the actor who performed the event. */
|
|
@@ -5990,7 +6040,7 @@ type EnqueuePullRequestInput = {
|
|
|
5990
6040
|
/** The ID of the pull request to enqueue. */
|
|
5991
6041
|
pullRequestId: Scalars['ID']['input'];
|
|
5992
6042
|
};
|
|
5993
|
-
/** Autogenerated return type of EnqueuePullRequest */
|
|
6043
|
+
/** Autogenerated return type of EnqueuePullRequest. */
|
|
5994
6044
|
type EnqueuePullRequestPayload = {
|
|
5995
6045
|
__typename?: 'EnqueuePullRequestPayload';
|
|
5996
6046
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -6003,6 +6053,8 @@ type Enterprise = AnnouncementBanner & Node & {
|
|
|
6003
6053
|
__typename?: 'Enterprise';
|
|
6004
6054
|
/** The text of the announcement */
|
|
6005
6055
|
announcement?: Maybe<Scalars['String']['output']>;
|
|
6056
|
+
/** The date the announcement was created */
|
|
6057
|
+
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6006
6058
|
/** The expiration date of the announcement, if any */
|
|
6007
6059
|
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6008
6060
|
/** Whether the announcement can be dismissed by the user */
|
|
@@ -6036,6 +6088,10 @@ type Enterprise = AnnouncementBanner & Node & {
|
|
|
6036
6088
|
* personal access tokens (classic) with read:enterprise or admin:enterprise scope.
|
|
6037
6089
|
*/
|
|
6038
6090
|
ownerInfo?: Maybe<EnterpriseOwnerInfo>;
|
|
6091
|
+
/** The raw content of the enterprise README. */
|
|
6092
|
+
readme?: Maybe<Scalars['String']['output']>;
|
|
6093
|
+
/** The content of the enterprise README as HTML. */
|
|
6094
|
+
readmeHTML: Scalars['HTML']['output'];
|
|
6039
6095
|
/** The HTTP path for this enterprise. */
|
|
6040
6096
|
resourcePath: Scalars['URI']['output'];
|
|
6041
6097
|
/** The URL-friendly identifier for the enterprise. */
|
|
@@ -6328,6 +6384,53 @@ type EnterpriseMemberEdge = {
|
|
|
6328
6384
|
/** The item at the end of the edge. */
|
|
6329
6385
|
node?: Maybe<EnterpriseMember>;
|
|
6330
6386
|
};
|
|
6387
|
+
/** An invitation for a user to become an unaffiliated member of an enterprise. */
|
|
6388
|
+
type EnterpriseMemberInvitation = Node & {
|
|
6389
|
+
__typename?: 'EnterpriseMemberInvitation';
|
|
6390
|
+
/** Identifies the date and time when the object was created. */
|
|
6391
|
+
createdAt: Scalars['DateTime']['output'];
|
|
6392
|
+
/** The email of the person who was invited to the enterprise. */
|
|
6393
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
6394
|
+
/** The enterprise the invitation is for. */
|
|
6395
|
+
enterprise: Enterprise;
|
|
6396
|
+
/** The Node ID of the EnterpriseMemberInvitation object */
|
|
6397
|
+
id: Scalars['ID']['output'];
|
|
6398
|
+
/** The user who was invited to the enterprise. */
|
|
6399
|
+
invitee?: Maybe<User>;
|
|
6400
|
+
/** The user who created the invitation. */
|
|
6401
|
+
inviter?: Maybe<User>;
|
|
6402
|
+
};
|
|
6403
|
+
/** The connection type for EnterpriseMemberInvitation. */
|
|
6404
|
+
type EnterpriseMemberInvitationConnection = {
|
|
6405
|
+
__typename?: 'EnterpriseMemberInvitationConnection';
|
|
6406
|
+
/** A list of edges. */
|
|
6407
|
+
edges?: Maybe<Array<Maybe<EnterpriseMemberInvitationEdge>>>;
|
|
6408
|
+
/** A list of nodes. */
|
|
6409
|
+
nodes?: Maybe<Array<Maybe<EnterpriseMemberInvitation>>>;
|
|
6410
|
+
/** Information to aid in pagination. */
|
|
6411
|
+
pageInfo: PageInfo;
|
|
6412
|
+
/** Identifies the total count of items in the connection. */
|
|
6413
|
+
totalCount: Scalars['Int']['output'];
|
|
6414
|
+
};
|
|
6415
|
+
/** An edge in a connection. */
|
|
6416
|
+
type EnterpriseMemberInvitationEdge = {
|
|
6417
|
+
__typename?: 'EnterpriseMemberInvitationEdge';
|
|
6418
|
+
/** A cursor for use in pagination. */
|
|
6419
|
+
cursor: Scalars['String']['output'];
|
|
6420
|
+
/** The item at the end of the edge. */
|
|
6421
|
+
node?: Maybe<EnterpriseMemberInvitation>;
|
|
6422
|
+
};
|
|
6423
|
+
/** Ordering options for enterprise administrator invitation connections */
|
|
6424
|
+
type EnterpriseMemberInvitationOrder = {
|
|
6425
|
+
/** The ordering direction. */
|
|
6426
|
+
direction: OrderDirection;
|
|
6427
|
+
/** The field to order enterprise member invitations by. */
|
|
6428
|
+
field: EnterpriseMemberInvitationOrderField;
|
|
6429
|
+
};
|
|
6430
|
+
/** Properties by which enterprise member invitation connections can be ordered. */
|
|
6431
|
+
type EnterpriseMemberInvitationOrderField =
|
|
6432
|
+
/** Order enterprise member invitations by creation time */
|
|
6433
|
+
'CREATED_AT';
|
|
6331
6434
|
/** Ordering options for enterprise member connections. */
|
|
6332
6435
|
type EnterpriseMemberOrder = {
|
|
6333
6436
|
/** The ordering direction. */
|
|
@@ -6532,6 +6635,8 @@ type EnterpriseOwnerInfo = {
|
|
|
6532
6635
|
pendingCollaboratorInvitations: RepositoryInvitationConnection;
|
|
6533
6636
|
/** A list of pending member invitations for organizations in the enterprise. */
|
|
6534
6637
|
pendingMemberInvitations: EnterprisePendingMemberInvitationConnection;
|
|
6638
|
+
/** A list of pending unaffiliated member invitations for the enterprise. */
|
|
6639
|
+
pendingUnaffiliatedMemberInvitations: EnterpriseMemberInvitationConnection;
|
|
6535
6640
|
/** The setting value for whether repository projects are enabled in this enterprise. */
|
|
6536
6641
|
repositoryProjectsSetting: EnterpriseEnabledDisabledSettingValue;
|
|
6537
6642
|
/** A list of enterprise organizations configured with the provided repository projects setting value. */
|
|
@@ -6797,6 +6902,18 @@ type EnterpriseOwnerInfoPendingMemberInvitationsArgs = {
|
|
|
6797
6902
|
organizationLogins?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6798
6903
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
6799
6904
|
};
|
|
6905
|
+
/**
|
|
6906
|
+
* Enterprise information visible to enterprise owners or enterprise owners'
|
|
6907
|
+
* personal access tokens (classic) with read:enterprise or admin:enterprise scope.
|
|
6908
|
+
*/
|
|
6909
|
+
type EnterpriseOwnerInfoPendingUnaffiliatedMemberInvitationsArgs = {
|
|
6910
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6911
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
6912
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6913
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6914
|
+
orderBy?: InputMaybe<EnterpriseMemberInvitationOrder>;
|
|
6915
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
6916
|
+
};
|
|
6800
6917
|
/**
|
|
6801
6918
|
* Enterprise information visible to enterprise owners or enterprise owners'
|
|
6802
6919
|
* personal access tokens (classic) with read:enterprise or admin:enterprise scope.
|
|
@@ -7248,8 +7365,14 @@ type Environment = Node & {
|
|
|
7248
7365
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
7249
7366
|
/** The Node ID of the Environment object */
|
|
7250
7367
|
id: Scalars['ID']['output'];
|
|
7368
|
+
/** Indicates whether or not this environment is currently pinned to the repository */
|
|
7369
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
7370
|
+
/** The latest completed deployment with status success, failure, or error if it exists */
|
|
7371
|
+
latestCompletedDeployment?: Maybe<Deployment>;
|
|
7251
7372
|
/** The name of the environment */
|
|
7252
7373
|
name: Scalars['String']['output'];
|
|
7374
|
+
/** The position of the environment if it is pinned, null if it is not pinned */
|
|
7375
|
+
pinnedPosition?: Maybe<Scalars['Int']['output']>;
|
|
7253
7376
|
/** The protection rules defined for this environment */
|
|
7254
7377
|
protectionRules: DeploymentProtectionRuleConnection;
|
|
7255
7378
|
};
|
|
@@ -7284,6 +7407,14 @@ type EnvironmentEdge = {
|
|
|
7284
7407
|
type EnvironmentOrderField =
|
|
7285
7408
|
/** Order environments by name. */
|
|
7286
7409
|
'NAME';
|
|
7410
|
+
/** Properties by which environments connections can be ordered */
|
|
7411
|
+
type EnvironmentPinnedFilterField =
|
|
7412
|
+
/** All environments will be returned. */
|
|
7413
|
+
'ALL'
|
|
7414
|
+
/** Environments exclude pinned will be returned */
|
|
7415
|
+
| 'NONE'
|
|
7416
|
+
/** Only pinned environment will be returned */
|
|
7417
|
+
| 'ONLY';
|
|
7287
7418
|
/** Ordering options for environments */
|
|
7288
7419
|
type Environments = {
|
|
7289
7420
|
/** The direction in which to order environments by the specified field. */
|
|
@@ -7562,7 +7693,7 @@ type FollowOrganizationInput = {
|
|
|
7562
7693
|
/** ID of the organization to follow. */
|
|
7563
7694
|
organizationId: Scalars['ID']['input'];
|
|
7564
7695
|
};
|
|
7565
|
-
/** Autogenerated return type of FollowOrganization */
|
|
7696
|
+
/** Autogenerated return type of FollowOrganization. */
|
|
7566
7697
|
type FollowOrganizationPayload = {
|
|
7567
7698
|
__typename?: 'FollowOrganizationPayload';
|
|
7568
7699
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -7577,7 +7708,7 @@ type FollowUserInput = {
|
|
|
7577
7708
|
/** ID of the user to follow. */
|
|
7578
7709
|
userId: Scalars['ID']['input'];
|
|
7579
7710
|
};
|
|
7580
|
-
/** Autogenerated return type of FollowUser */
|
|
7711
|
+
/** Autogenerated return type of FollowUser. */
|
|
7581
7712
|
type FollowUserPayload = {
|
|
7582
7713
|
__typename?: 'FollowUserPayload';
|
|
7583
7714
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -8026,7 +8157,7 @@ type GrantEnterpriseOrganizationsMigratorRoleInput = {
|
|
|
8026
8157
|
/** The login of the user to grant the migrator role */
|
|
8027
8158
|
login: Scalars['String']['input'];
|
|
8028
8159
|
};
|
|
8029
|
-
/** Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole */
|
|
8160
|
+
/** Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole. */
|
|
8030
8161
|
type GrantEnterpriseOrganizationsMigratorRolePayload = {
|
|
8031
8162
|
__typename?: 'GrantEnterpriseOrganizationsMigratorRolePayload';
|
|
8032
8163
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -8034,7 +8165,7 @@ type GrantEnterpriseOrganizationsMigratorRolePayload = {
|
|
|
8034
8165
|
/** The organizations that had the migrator role applied to for the given user. */
|
|
8035
8166
|
organizations?: Maybe<OrganizationConnection>;
|
|
8036
8167
|
};
|
|
8037
|
-
/** Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole */
|
|
8168
|
+
/** Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole. */
|
|
8038
8169
|
type GrantEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs = {
|
|
8039
8170
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8040
8171
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8052,7 +8183,7 @@ type GrantMigratorRoleInput = {
|
|
|
8052
8183
|
/** The ID of the organization that the user/team belongs to. */
|
|
8053
8184
|
organizationId: Scalars['ID']['input'];
|
|
8054
8185
|
};
|
|
8055
|
-
/** Autogenerated return type of GrantMigratorRole */
|
|
8186
|
+
/** Autogenerated return type of GrantMigratorRole. */
|
|
8056
8187
|
type GrantMigratorRolePayload = {
|
|
8057
8188
|
__typename?: 'GrantMigratorRolePayload';
|
|
8058
8189
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -8142,7 +8273,7 @@ type ImportProjectInput = {
|
|
|
8142
8273
|
/** Whether the Project is public or not. */
|
|
8143
8274
|
public?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8144
8275
|
};
|
|
8145
|
-
/** Autogenerated return type of ImportProject */
|
|
8276
|
+
/** Autogenerated return type of ImportProject. */
|
|
8146
8277
|
type ImportProjectPayload = {
|
|
8147
8278
|
__typename?: 'ImportProjectPayload';
|
|
8148
8279
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -8163,7 +8294,7 @@ type InviteEnterpriseAdminInput = {
|
|
|
8163
8294
|
/** The role of the administrator. */
|
|
8164
8295
|
role?: InputMaybe<EnterpriseAdministratorRole>;
|
|
8165
8296
|
};
|
|
8166
|
-
/** Autogenerated return type of InviteEnterpriseAdmin */
|
|
8297
|
+
/** Autogenerated return type of InviteEnterpriseAdmin. */
|
|
8167
8298
|
type InviteEnterpriseAdminPayload = {
|
|
8168
8299
|
__typename?: 'InviteEnterpriseAdminPayload';
|
|
8169
8300
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -8171,6 +8302,25 @@ type InviteEnterpriseAdminPayload = {
|
|
|
8171
8302
|
/** The created enterprise administrator invitation. */
|
|
8172
8303
|
invitation?: Maybe<EnterpriseAdministratorInvitation>;
|
|
8173
8304
|
};
|
|
8305
|
+
/** Autogenerated input type of InviteEnterpriseMember */
|
|
8306
|
+
type InviteEnterpriseMemberInput = {
|
|
8307
|
+
/** A unique identifier for the client performing the mutation. */
|
|
8308
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
8309
|
+
/** The email of the person to invite as an unaffiliated member. */
|
|
8310
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
8311
|
+
/** The ID of the enterprise to which you want to invite an unaffiliated member. */
|
|
8312
|
+
enterpriseId: Scalars['ID']['input'];
|
|
8313
|
+
/** The login of a user to invite as an unaffiliated member. */
|
|
8314
|
+
invitee?: InputMaybe<Scalars['String']['input']>;
|
|
8315
|
+
};
|
|
8316
|
+
/** Autogenerated return type of InviteEnterpriseMember. */
|
|
8317
|
+
type InviteEnterpriseMemberPayload = {
|
|
8318
|
+
__typename?: 'InviteEnterpriseMemberPayload';
|
|
8319
|
+
/** A unique identifier for the client performing the mutation. */
|
|
8320
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
8321
|
+
/** The created enterprise member invitation. */
|
|
8322
|
+
invitation?: Maybe<EnterpriseMemberInvitation>;
|
|
8323
|
+
};
|
|
8174
8324
|
/** The possible values for the IP allow list enabled setting. */
|
|
8175
8325
|
type IpAllowListEnabledSettingValue =
|
|
8176
8326
|
/** The setting is disabled for the owner. */
|
|
@@ -9084,7 +9234,7 @@ type LinkProjectV2ToRepositoryInput = {
|
|
|
9084
9234
|
/** The ID of the repository to link to the project. */
|
|
9085
9235
|
repositoryId: Scalars['ID']['input'];
|
|
9086
9236
|
};
|
|
9087
|
-
/** Autogenerated return type of LinkProjectV2ToRepository */
|
|
9237
|
+
/** Autogenerated return type of LinkProjectV2ToRepository. */
|
|
9088
9238
|
type LinkProjectV2ToRepositoryPayload = {
|
|
9089
9239
|
__typename?: 'LinkProjectV2ToRepositoryPayload';
|
|
9090
9240
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9101,7 +9251,7 @@ type LinkProjectV2ToTeamInput = {
|
|
|
9101
9251
|
/** The ID of the team to link to the project. */
|
|
9102
9252
|
teamId: Scalars['ID']['input'];
|
|
9103
9253
|
};
|
|
9104
|
-
/** Autogenerated return type of LinkProjectV2ToTeam */
|
|
9254
|
+
/** Autogenerated return type of LinkProjectV2ToTeam. */
|
|
9105
9255
|
type LinkProjectV2ToTeamPayload = {
|
|
9106
9256
|
__typename?: 'LinkProjectV2ToTeamPayload';
|
|
9107
9257
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9118,7 +9268,7 @@ type LinkRepositoryToProjectInput = {
|
|
|
9118
9268
|
/** The ID of the Repository to link to a Project. */
|
|
9119
9269
|
repositoryId: Scalars['ID']['input'];
|
|
9120
9270
|
};
|
|
9121
|
-
/** Autogenerated return type of LinkRepositoryToProject */
|
|
9271
|
+
/** Autogenerated return type of LinkRepositoryToProject. */
|
|
9122
9272
|
type LinkRepositoryToProjectPayload = {
|
|
9123
9273
|
__typename?: 'LinkRepositoryToProjectPayload';
|
|
9124
9274
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9165,7 +9315,7 @@ type LockLockableInput = {
|
|
|
9165
9315
|
/** ID of the item to be locked. */
|
|
9166
9316
|
lockableId: Scalars['ID']['input'];
|
|
9167
9317
|
};
|
|
9168
|
-
/** Autogenerated return type of LockLockable */
|
|
9318
|
+
/** Autogenerated return type of LockLockable. */
|
|
9169
9319
|
type LockLockablePayload = {
|
|
9170
9320
|
__typename?: 'LockLockablePayload';
|
|
9171
9321
|
/** Identifies the actor who performed the event. */
|
|
@@ -9274,7 +9424,7 @@ type MarkDiscussionCommentAsAnswerInput = {
|
|
|
9274
9424
|
/** The Node ID of the discussion comment to mark as an answer. */
|
|
9275
9425
|
id: Scalars['ID']['input'];
|
|
9276
9426
|
};
|
|
9277
|
-
/** Autogenerated return type of MarkDiscussionCommentAsAnswer */
|
|
9427
|
+
/** Autogenerated return type of MarkDiscussionCommentAsAnswer. */
|
|
9278
9428
|
type MarkDiscussionCommentAsAnswerPayload = {
|
|
9279
9429
|
__typename?: 'MarkDiscussionCommentAsAnswerPayload';
|
|
9280
9430
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9291,7 +9441,7 @@ type MarkFileAsViewedInput = {
|
|
|
9291
9441
|
/** The Node ID of the pull request. */
|
|
9292
9442
|
pullRequestId: Scalars['ID']['input'];
|
|
9293
9443
|
};
|
|
9294
|
-
/** Autogenerated return type of MarkFileAsViewed */
|
|
9444
|
+
/** Autogenerated return type of MarkFileAsViewed. */
|
|
9295
9445
|
type MarkFileAsViewedPayload = {
|
|
9296
9446
|
__typename?: 'MarkFileAsViewedPayload';
|
|
9297
9447
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9306,7 +9456,7 @@ type MarkNotificationAsDoneInput = {
|
|
|
9306
9456
|
/** The NotificationThread id. */
|
|
9307
9457
|
id: Scalars['ID']['input'];
|
|
9308
9458
|
};
|
|
9309
|
-
/** Autogenerated return type of MarkNotificationAsDone */
|
|
9459
|
+
/** Autogenerated return type of MarkNotificationAsDone. */
|
|
9310
9460
|
type MarkNotificationAsDonePayload = {
|
|
9311
9461
|
__typename?: 'MarkNotificationAsDonePayload';
|
|
9312
9462
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9323,7 +9473,7 @@ type MarkProjectV2AsTemplateInput = {
|
|
|
9323
9473
|
/** The ID of the Project to mark as a template. */
|
|
9324
9474
|
projectId: Scalars['ID']['input'];
|
|
9325
9475
|
};
|
|
9326
|
-
/** Autogenerated return type of MarkProjectV2AsTemplate */
|
|
9476
|
+
/** Autogenerated return type of MarkProjectV2AsTemplate. */
|
|
9327
9477
|
type MarkProjectV2AsTemplatePayload = {
|
|
9328
9478
|
__typename?: 'MarkProjectV2AsTemplatePayload';
|
|
9329
9479
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9338,7 +9488,7 @@ type MarkPullRequestReadyForReviewInput = {
|
|
|
9338
9488
|
/** ID of the pull request to be marked as ready for review. */
|
|
9339
9489
|
pullRequestId: Scalars['ID']['input'];
|
|
9340
9490
|
};
|
|
9341
|
-
/** Autogenerated return type of MarkPullRequestReadyForReview */
|
|
9491
|
+
/** Autogenerated return type of MarkPullRequestReadyForReview. */
|
|
9342
9492
|
type MarkPullRequestReadyForReviewPayload = {
|
|
9343
9493
|
__typename?: 'MarkPullRequestReadyForReviewPayload';
|
|
9344
9494
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9582,7 +9732,7 @@ type MaxFileSizeParametersInput = {
|
|
|
9582
9732
|
/** Represents a member feature request notification */
|
|
9583
9733
|
type MemberFeatureRequestNotification = Node & {
|
|
9584
9734
|
__typename?: 'MemberFeatureRequestNotification';
|
|
9585
|
-
/** Represents member feature request body containing
|
|
9735
|
+
/** Represents member feature request body containing entity name and the number of feature requests */
|
|
9586
9736
|
body: Scalars['String']['output'];
|
|
9587
9737
|
/** The Node ID of the MemberFeatureRequestNotification object */
|
|
9588
9738
|
id: Scalars['ID']['output'];
|
|
@@ -9769,7 +9919,7 @@ type MergeBranchInput = {
|
|
|
9769
9919
|
/** The Node ID of the Repository containing the base branch that will be modified. */
|
|
9770
9920
|
repositoryId: Scalars['ID']['input'];
|
|
9771
9921
|
};
|
|
9772
|
-
/** Autogenerated return type of MergeBranch */
|
|
9922
|
+
/** Autogenerated return type of MergeBranch. */
|
|
9773
9923
|
type MergeBranchPayload = {
|
|
9774
9924
|
__typename?: 'MergeBranchPayload';
|
|
9775
9925
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -9808,7 +9958,7 @@ type MergePullRequestInput = {
|
|
|
9808
9958
|
/** ID of the pull request to be merged. */
|
|
9809
9959
|
pullRequestId: Scalars['ID']['input'];
|
|
9810
9960
|
};
|
|
9811
|
-
/** Autogenerated return type of MergePullRequest */
|
|
9961
|
+
/** Autogenerated return type of MergePullRequest. */
|
|
9812
9962
|
type MergePullRequestPayload = {
|
|
9813
9963
|
__typename?: 'MergePullRequestPayload';
|
|
9814
9964
|
/** Identifies the actor who performed the event. */
|
|
@@ -10188,7 +10338,7 @@ type MinimizeCommentInput = {
|
|
|
10188
10338
|
/** The Node ID of the subject to modify. */
|
|
10189
10339
|
subjectId: Scalars['ID']['input'];
|
|
10190
10340
|
};
|
|
10191
|
-
/** Autogenerated return type of MinimizeComment */
|
|
10341
|
+
/** Autogenerated return type of MinimizeComment. */
|
|
10192
10342
|
type MinimizeCommentPayload = {
|
|
10193
10343
|
__typename?: 'MinimizeCommentPayload';
|
|
10194
10344
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -10207,7 +10357,7 @@ type MoveProjectCardInput = {
|
|
|
10207
10357
|
/** The id of the column to move it into. */
|
|
10208
10358
|
columnId: Scalars['ID']['input'];
|
|
10209
10359
|
};
|
|
10210
|
-
/** Autogenerated return type of MoveProjectCard */
|
|
10360
|
+
/** Autogenerated return type of MoveProjectCard. */
|
|
10211
10361
|
type MoveProjectCardPayload = {
|
|
10212
10362
|
__typename?: 'MoveProjectCardPayload';
|
|
10213
10363
|
/** The new edge of the moved card. */
|
|
@@ -10224,7 +10374,7 @@ type MoveProjectColumnInput = {
|
|
|
10224
10374
|
/** The id of the column to move. */
|
|
10225
10375
|
columnId: Scalars['ID']['input'];
|
|
10226
10376
|
};
|
|
10227
|
-
/** Autogenerated return type of MoveProjectColumn */
|
|
10377
|
+
/** Autogenerated return type of MoveProjectColumn. */
|
|
10228
10378
|
type MoveProjectColumnPayload = {
|
|
10229
10379
|
__typename?: 'MoveProjectColumnPayload';
|
|
10230
10380
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -10261,6 +10411,8 @@ type Mutation = {
|
|
|
10261
10411
|
abortRepositoryMigration?: Maybe<AbortRepositoryMigrationPayload>;
|
|
10262
10412
|
/** Accepts a pending invitation for a user to become an administrator of an enterprise. */
|
|
10263
10413
|
acceptEnterpriseAdministratorInvitation?: Maybe<AcceptEnterpriseAdministratorInvitationPayload>;
|
|
10414
|
+
/** Accepts a pending invitation for a user to become an unaffiliated member of an enterprise. */
|
|
10415
|
+
acceptEnterpriseMemberInvitation?: Maybe<AcceptEnterpriseMemberInvitationPayload>;
|
|
10264
10416
|
/** Applies a suggested topic to the repository. */
|
|
10265
10417
|
acceptTopicSuggestion?: Maybe<AcceptTopicSuggestionPayload>;
|
|
10266
10418
|
/** Adds assignees to an assignable object. */
|
|
@@ -10311,6 +10463,8 @@ type Mutation = {
|
|
|
10311
10463
|
archiveRepository?: Maybe<ArchiveRepositoryPayload>;
|
|
10312
10464
|
/** Cancels a pending invitation for an administrator to join an enterprise. */
|
|
10313
10465
|
cancelEnterpriseAdminInvitation?: Maybe<CancelEnterpriseAdminInvitationPayload>;
|
|
10466
|
+
/** Cancels a pending invitation for an unaffiliated member to join an enterprise. */
|
|
10467
|
+
cancelEnterpriseMemberInvitation?: Maybe<CancelEnterpriseMemberInvitationPayload>;
|
|
10314
10468
|
/** Cancel an active sponsorship. */
|
|
10315
10469
|
cancelSponsorship?: Maybe<CancelSponsorshipPayload>;
|
|
10316
10470
|
/** Update your status on GitHub. */
|
|
@@ -10528,6 +10682,8 @@ type Mutation = {
|
|
|
10528
10682
|
importProject?: Maybe<ImportProjectPayload>;
|
|
10529
10683
|
/** Invite someone to become an administrator of the enterprise. */
|
|
10530
10684
|
inviteEnterpriseAdmin?: Maybe<InviteEnterpriseAdminPayload>;
|
|
10685
|
+
/** Invite someone to become an unaffiliated member of the enterprise. */
|
|
10686
|
+
inviteEnterpriseMember?: Maybe<InviteEnterpriseMemberPayload>;
|
|
10531
10687
|
/** Links a project to a repository. */
|
|
10532
10688
|
linkProjectV2ToRepository?: Maybe<LinkProjectV2ToRepositoryPayload>;
|
|
10533
10689
|
/** Links a project to a team. */
|
|
@@ -10556,6 +10712,8 @@ type Mutation = {
|
|
|
10556
10712
|
moveProjectCard?: Maybe<MoveProjectCardPayload>;
|
|
10557
10713
|
/** Moves a project column to another place. */
|
|
10558
10714
|
moveProjectColumn?: Maybe<MoveProjectColumnPayload>;
|
|
10715
|
+
/** Pin an environment to a repository */
|
|
10716
|
+
pinEnvironment?: Maybe<PinEnvironmentPayload>;
|
|
10559
10717
|
/** Pin an issue to a repository */
|
|
10560
10718
|
pinIssue?: Maybe<PinIssuePayload>;
|
|
10561
10719
|
/** Publish an existing sponsorship tier that is currently still a draft to a GitHub Sponsors profile. */
|
|
@@ -10597,6 +10755,8 @@ type Mutation = {
|
|
|
10597
10755
|
reopenIssue?: Maybe<ReopenIssuePayload>;
|
|
10598
10756
|
/** Reopen a pull request. */
|
|
10599
10757
|
reopenPullRequest?: Maybe<ReopenPullRequestPayload>;
|
|
10758
|
+
/** Reorder a pinned repository environment */
|
|
10759
|
+
reorderEnvironment?: Maybe<ReorderEnvironmentPayload>;
|
|
10600
10760
|
/** Set review requests on a pull request. */
|
|
10601
10761
|
requestReviews?: Maybe<RequestReviewsPayload>;
|
|
10602
10762
|
/** Rerequests an existing check suite. */
|
|
@@ -10822,6 +10982,10 @@ type MutationAcceptEnterpriseAdministratorInvitationArgs = {
|
|
|
10822
10982
|
input: AcceptEnterpriseAdministratorInvitationInput;
|
|
10823
10983
|
};
|
|
10824
10984
|
/** The root query for implementing GraphQL mutations. */
|
|
10985
|
+
type MutationAcceptEnterpriseMemberInvitationArgs = {
|
|
10986
|
+
input: AcceptEnterpriseMemberInvitationInput;
|
|
10987
|
+
};
|
|
10988
|
+
/** The root query for implementing GraphQL mutations. */
|
|
10825
10989
|
type MutationAcceptTopicSuggestionArgs = {
|
|
10826
10990
|
input: AcceptTopicSuggestionInput;
|
|
10827
10991
|
};
|
|
@@ -10922,6 +11086,10 @@ type MutationCancelEnterpriseAdminInvitationArgs = {
|
|
|
10922
11086
|
input: CancelEnterpriseAdminInvitationInput;
|
|
10923
11087
|
};
|
|
10924
11088
|
/** The root query for implementing GraphQL mutations. */
|
|
11089
|
+
type MutationCancelEnterpriseMemberInvitationArgs = {
|
|
11090
|
+
input: CancelEnterpriseMemberInvitationInput;
|
|
11091
|
+
};
|
|
11092
|
+
/** The root query for implementing GraphQL mutations. */
|
|
10925
11093
|
type MutationCancelSponsorshipArgs = {
|
|
10926
11094
|
input: CancelSponsorshipInput;
|
|
10927
11095
|
};
|
|
@@ -11242,6 +11410,10 @@ type MutationInviteEnterpriseAdminArgs = {
|
|
|
11242
11410
|
input: InviteEnterpriseAdminInput;
|
|
11243
11411
|
};
|
|
11244
11412
|
/** The root query for implementing GraphQL mutations. */
|
|
11413
|
+
type MutationInviteEnterpriseMemberArgs = {
|
|
11414
|
+
input: InviteEnterpriseMemberInput;
|
|
11415
|
+
};
|
|
11416
|
+
/** The root query for implementing GraphQL mutations. */
|
|
11245
11417
|
type MutationLinkProjectV2ToRepositoryArgs = {
|
|
11246
11418
|
input: LinkProjectV2ToRepositoryInput;
|
|
11247
11419
|
};
|
|
@@ -11298,6 +11470,10 @@ type MutationMoveProjectColumnArgs = {
|
|
|
11298
11470
|
input: MoveProjectColumnInput;
|
|
11299
11471
|
};
|
|
11300
11472
|
/** The root query for implementing GraphQL mutations. */
|
|
11473
|
+
type MutationPinEnvironmentArgs = {
|
|
11474
|
+
input: PinEnvironmentInput;
|
|
11475
|
+
};
|
|
11476
|
+
/** The root query for implementing GraphQL mutations. */
|
|
11301
11477
|
type MutationPinIssueArgs = {
|
|
11302
11478
|
input: PinIssueInput;
|
|
11303
11479
|
};
|
|
@@ -11374,6 +11550,10 @@ type MutationReopenPullRequestArgs = {
|
|
|
11374
11550
|
input: ReopenPullRequestInput;
|
|
11375
11551
|
};
|
|
11376
11552
|
/** The root query for implementing GraphQL mutations. */
|
|
11553
|
+
type MutationReorderEnvironmentArgs = {
|
|
11554
|
+
input: ReorderEnvironmentInput;
|
|
11555
|
+
};
|
|
11556
|
+
/** The root query for implementing GraphQL mutations. */
|
|
11377
11557
|
type MutationRequestReviewsArgs = {
|
|
11378
11558
|
input: RequestReviewsInput;
|
|
11379
11559
|
};
|
|
@@ -13290,6 +13470,8 @@ type Organization = Actor & AnnouncementBanner & MemberStatusable & Node & Packa
|
|
|
13290
13470
|
__typename?: 'Organization';
|
|
13291
13471
|
/** The text of the announcement */
|
|
13292
13472
|
announcement?: Maybe<Scalars['String']['output']>;
|
|
13473
|
+
/** The date the announcement was created */
|
|
13474
|
+
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
13293
13475
|
/** The expiration date of the announcement, if any */
|
|
13294
13476
|
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
13295
13477
|
/** Whether the announcement can be dismissed by the user */
|
|
@@ -14392,6 +14574,25 @@ type PermissionSource = {
|
|
|
14392
14574
|
/** The source of this permission. */
|
|
14393
14575
|
source: PermissionGranter;
|
|
14394
14576
|
};
|
|
14577
|
+
/** Autogenerated input type of PinEnvironment */
|
|
14578
|
+
type PinEnvironmentInput = {
|
|
14579
|
+
/** A unique identifier for the client performing the mutation. */
|
|
14580
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
14581
|
+
/** The ID of the environment to modify */
|
|
14582
|
+
environmentId: Scalars['ID']['input'];
|
|
14583
|
+
/** The desired state of the environment. If true, environment will be pinned. If false, it will be unpinned. */
|
|
14584
|
+
pinned: Scalars['Boolean']['input'];
|
|
14585
|
+
};
|
|
14586
|
+
/** Autogenerated return type of PinEnvironment. */
|
|
14587
|
+
type PinEnvironmentPayload = {
|
|
14588
|
+
__typename?: 'PinEnvironmentPayload';
|
|
14589
|
+
/** A unique identifier for the client performing the mutation. */
|
|
14590
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
14591
|
+
/** The environment that was pinned */
|
|
14592
|
+
environment?: Maybe<Environment>;
|
|
14593
|
+
/** The pinned environment if we pinned */
|
|
14594
|
+
pinnedEnvironment?: Maybe<PinnedEnvironment>;
|
|
14595
|
+
};
|
|
14395
14596
|
/** Autogenerated input type of PinIssue */
|
|
14396
14597
|
type PinIssueInput = {
|
|
14397
14598
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -14399,7 +14600,7 @@ type PinIssueInput = {
|
|
|
14399
14600
|
/** The ID of the issue to be pinned */
|
|
14400
14601
|
issueId: Scalars['ID']['input'];
|
|
14401
14602
|
};
|
|
14402
|
-
/** Autogenerated return type of PinIssue */
|
|
14603
|
+
/** Autogenerated return type of PinIssue. */
|
|
14403
14604
|
type PinIssuePayload = {
|
|
14404
14605
|
__typename?: 'PinIssuePayload';
|
|
14405
14606
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -14517,6 +14718,53 @@ type PinnedDiscussionPattern =
|
|
|
14517
14718
|
| 'PLUS'
|
|
14518
14719
|
/** A lightning bolt pattern */
|
|
14519
14720
|
| 'ZAP';
|
|
14721
|
+
/** Represents a pinned environment on a given repository */
|
|
14722
|
+
type PinnedEnvironment = Node & {
|
|
14723
|
+
__typename?: 'PinnedEnvironment';
|
|
14724
|
+
/** Identifies the date and time when the pinned environment was created */
|
|
14725
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14726
|
+
/** Identifies the primary key from the database. */
|
|
14727
|
+
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14728
|
+
/** Identifies the environment associated. */
|
|
14729
|
+
environment: Environment;
|
|
14730
|
+
/** The Node ID of the PinnedEnvironment object */
|
|
14731
|
+
id: Scalars['ID']['output'];
|
|
14732
|
+
/** Identifies the position of the pinned environment. */
|
|
14733
|
+
position: Scalars['Int']['output'];
|
|
14734
|
+
/** The repository that this environment was pinned to. */
|
|
14735
|
+
repository: Repository;
|
|
14736
|
+
};
|
|
14737
|
+
/** The connection type for PinnedEnvironment. */
|
|
14738
|
+
type PinnedEnvironmentConnection = {
|
|
14739
|
+
__typename?: 'PinnedEnvironmentConnection';
|
|
14740
|
+
/** A list of edges. */
|
|
14741
|
+
edges?: Maybe<Array<Maybe<PinnedEnvironmentEdge>>>;
|
|
14742
|
+
/** A list of nodes. */
|
|
14743
|
+
nodes?: Maybe<Array<Maybe<PinnedEnvironment>>>;
|
|
14744
|
+
/** Information to aid in pagination. */
|
|
14745
|
+
pageInfo: PageInfo;
|
|
14746
|
+
/** Identifies the total count of items in the connection. */
|
|
14747
|
+
totalCount: Scalars['Int']['output'];
|
|
14748
|
+
};
|
|
14749
|
+
/** An edge in a connection. */
|
|
14750
|
+
type PinnedEnvironmentEdge = {
|
|
14751
|
+
__typename?: 'PinnedEnvironmentEdge';
|
|
14752
|
+
/** A cursor for use in pagination. */
|
|
14753
|
+
cursor: Scalars['String']['output'];
|
|
14754
|
+
/** The item at the end of the edge. */
|
|
14755
|
+
node?: Maybe<PinnedEnvironment>;
|
|
14756
|
+
};
|
|
14757
|
+
/** Ordering options for pinned environments */
|
|
14758
|
+
type PinnedEnvironmentOrder = {
|
|
14759
|
+
/** The direction in which to order pinned environments by the specified field. */
|
|
14760
|
+
direction: OrderDirection;
|
|
14761
|
+
/** The field to order pinned environments by. */
|
|
14762
|
+
field: PinnedEnvironmentOrderField;
|
|
14763
|
+
};
|
|
14764
|
+
/** Properties by which pinned environments connections can be ordered */
|
|
14765
|
+
type PinnedEnvironmentOrderField =
|
|
14766
|
+
/** Order pinned environments by position */
|
|
14767
|
+
'POSITION';
|
|
14520
14768
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
14521
14769
|
type PinnedEvent = Node & {
|
|
14522
14770
|
__typename?: 'PinnedEvent';
|
|
@@ -16218,7 +16466,7 @@ type PublishSponsorsTierInput = {
|
|
|
16218
16466
|
/** The ID of the draft tier to publish. */
|
|
16219
16467
|
tierId: Scalars['ID']['input'];
|
|
16220
16468
|
};
|
|
16221
|
-
/** Autogenerated return type of PublishSponsorsTier */
|
|
16469
|
+
/** Autogenerated return type of PublishSponsorsTier. */
|
|
16222
16470
|
type PublishSponsorsTierPayload = {
|
|
16223
16471
|
__typename?: 'PublishSponsorsTierPayload';
|
|
16224
16472
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -17520,6 +17768,10 @@ type Query = {
|
|
|
17520
17768
|
enterpriseAdministratorInvitation?: Maybe<EnterpriseAdministratorInvitation>;
|
|
17521
17769
|
/** Look up a pending enterprise administrator invitation by invitation token. */
|
|
17522
17770
|
enterpriseAdministratorInvitationByToken?: Maybe<EnterpriseAdministratorInvitation>;
|
|
17771
|
+
/** Look up a pending enterprise unaffiliated member invitation by invitee and enterprise. */
|
|
17772
|
+
enterpriseMemberInvitation?: Maybe<EnterpriseMemberInvitation>;
|
|
17773
|
+
/** Look up a pending enterprise unaffiliated member invitation by invitation token. */
|
|
17774
|
+
enterpriseMemberInvitationByToken?: Maybe<EnterpriseMemberInvitation>;
|
|
17523
17775
|
/** Look up an open source license by its key */
|
|
17524
17776
|
license?: Maybe<License>;
|
|
17525
17777
|
/** Return a list of known open source licenses */
|
|
@@ -17535,9 +17787,9 @@ type Query = {
|
|
|
17535
17787
|
/** Return information about the GitHub instance */
|
|
17536
17788
|
meta: GitHubMetadata;
|
|
17537
17789
|
/** Fetches an object given its ID. */
|
|
17538
|
-
node?: Maybe<AddedToMergeQueueEvent | AddedToProjectEvent | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | Cwe | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OidcProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | PinnedDiscussion | PinnedEvent | PinnedIssue | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamDiscussion | TeamDiscussionComment | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile>;
|
|
17790
|
+
node?: Maybe<AddedToMergeQueueEvent | AddedToProjectEvent | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | Cwe | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OidcProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamDiscussion | TeamDiscussionComment | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile>;
|
|
17539
17791
|
/** Lookup nodes by a list of IDs. */
|
|
17540
|
-
nodes: Array<Maybe<AddedToMergeQueueEvent | AddedToProjectEvent | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | Cwe | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OidcProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | PinnedDiscussion | PinnedEvent | PinnedIssue | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamDiscussion | TeamDiscussionComment | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile>>;
|
|
17792
|
+
nodes: Array<Maybe<AddedToMergeQueueEvent | AddedToProjectEvent | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | Cwe | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OidcProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamDiscussion | TeamDiscussionComment | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile>>;
|
|
17541
17793
|
/** Lookup a organization by login. */
|
|
17542
17794
|
organization?: Maybe<Organization>;
|
|
17543
17795
|
/** The client's rate limit information. */
|
|
@@ -17590,6 +17842,15 @@ type QueryEnterpriseAdministratorInvitationByTokenArgs = {
|
|
|
17590
17842
|
invitationToken: Scalars['String']['input'];
|
|
17591
17843
|
};
|
|
17592
17844
|
/** The query root of GitHub's GraphQL interface. */
|
|
17845
|
+
type QueryEnterpriseMemberInvitationArgs = {
|
|
17846
|
+
enterpriseSlug: Scalars['String']['input'];
|
|
17847
|
+
userLogin: Scalars['String']['input'];
|
|
17848
|
+
};
|
|
17849
|
+
/** The query root of GitHub's GraphQL interface. */
|
|
17850
|
+
type QueryEnterpriseMemberInvitationByTokenArgs = {
|
|
17851
|
+
invitationToken: Scalars['String']['input'];
|
|
17852
|
+
};
|
|
17853
|
+
/** The query root of GitHub's GraphQL interface. */
|
|
17593
17854
|
type QueryLicenseArgs = {
|
|
17594
17855
|
key: Scalars['String']['input'];
|
|
17595
17856
|
};
|
|
@@ -18082,7 +18343,7 @@ type RegenerateEnterpriseIdentityProviderRecoveryCodesInput = {
|
|
|
18082
18343
|
/** The ID of the enterprise on which to set an identity provider. */
|
|
18083
18344
|
enterpriseId: Scalars['ID']['input'];
|
|
18084
18345
|
};
|
|
18085
|
-
/** Autogenerated return type of RegenerateEnterpriseIdentityProviderRecoveryCodes */
|
|
18346
|
+
/** Autogenerated return type of RegenerateEnterpriseIdentityProviderRecoveryCodes. */
|
|
18086
18347
|
type RegenerateEnterpriseIdentityProviderRecoveryCodesPayload = {
|
|
18087
18348
|
__typename?: 'RegenerateEnterpriseIdentityProviderRecoveryCodesPayload';
|
|
18088
18349
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18097,7 +18358,7 @@ type RegenerateVerifiableDomainTokenInput = {
|
|
|
18097
18358
|
/** The ID of the verifiable domain to regenerate the verification token of. */
|
|
18098
18359
|
id: Scalars['ID']['input'];
|
|
18099
18360
|
};
|
|
18100
|
-
/** Autogenerated return type of RegenerateVerifiableDomainToken */
|
|
18361
|
+
/** Autogenerated return type of RegenerateVerifiableDomainToken. */
|
|
18101
18362
|
type RegenerateVerifiableDomainTokenPayload = {
|
|
18102
18363
|
__typename?: 'RegenerateVerifiableDomainTokenPayload';
|
|
18103
18364
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18116,7 +18377,7 @@ type RejectDeploymentsInput = {
|
|
|
18116
18377
|
/** The node ID of the workflow run containing the pending deployments. */
|
|
18117
18378
|
workflowRunId: Scalars['ID']['input'];
|
|
18118
18379
|
};
|
|
18119
|
-
/** Autogenerated return type of RejectDeployments */
|
|
18380
|
+
/** Autogenerated return type of RejectDeployments. */
|
|
18120
18381
|
type RejectDeploymentsPayload = {
|
|
18121
18382
|
__typename?: 'RejectDeploymentsPayload';
|
|
18122
18383
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18292,7 +18553,7 @@ type RemoveAssigneesFromAssignableInput = {
|
|
|
18292
18553
|
/** A unique identifier for the client performing the mutation. */
|
|
18293
18554
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
18294
18555
|
};
|
|
18295
|
-
/** Autogenerated return type of RemoveAssigneesFromAssignable */
|
|
18556
|
+
/** Autogenerated return type of RemoveAssigneesFromAssignable. */
|
|
18296
18557
|
type RemoveAssigneesFromAssignablePayload = {
|
|
18297
18558
|
__typename?: 'RemoveAssigneesFromAssignablePayload';
|
|
18298
18559
|
/** The item that was unassigned. */
|
|
@@ -18309,7 +18570,7 @@ type RemoveEnterpriseAdminInput = {
|
|
|
18309
18570
|
/** The login of the user to remove as an administrator. */
|
|
18310
18571
|
login: Scalars['String']['input'];
|
|
18311
18572
|
};
|
|
18312
|
-
/** Autogenerated return type of RemoveEnterpriseAdmin */
|
|
18573
|
+
/** Autogenerated return type of RemoveEnterpriseAdmin. */
|
|
18313
18574
|
type RemoveEnterpriseAdminPayload = {
|
|
18314
18575
|
__typename?: 'RemoveEnterpriseAdminPayload';
|
|
18315
18576
|
/** The user who was removed as an administrator. */
|
|
@@ -18330,7 +18591,7 @@ type RemoveEnterpriseIdentityProviderInput = {
|
|
|
18330
18591
|
/** The ID of the enterprise from which to remove the identity provider. */
|
|
18331
18592
|
enterpriseId: Scalars['ID']['input'];
|
|
18332
18593
|
};
|
|
18333
|
-
/** Autogenerated return type of RemoveEnterpriseIdentityProvider */
|
|
18594
|
+
/** Autogenerated return type of RemoveEnterpriseIdentityProvider. */
|
|
18334
18595
|
type RemoveEnterpriseIdentityProviderPayload = {
|
|
18335
18596
|
__typename?: 'RemoveEnterpriseIdentityProviderPayload';
|
|
18336
18597
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18347,7 +18608,7 @@ type RemoveEnterpriseMemberInput = {
|
|
|
18347
18608
|
/** The ID of the user to remove from the enterprise. */
|
|
18348
18609
|
userId: Scalars['ID']['input'];
|
|
18349
18610
|
};
|
|
18350
|
-
/** Autogenerated return type of RemoveEnterpriseMember */
|
|
18611
|
+
/** Autogenerated return type of RemoveEnterpriseMember. */
|
|
18351
18612
|
type RemoveEnterpriseMemberPayload = {
|
|
18352
18613
|
__typename?: 'RemoveEnterpriseMemberPayload';
|
|
18353
18614
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18368,7 +18629,7 @@ type RemoveEnterpriseOrganizationInput = {
|
|
|
18368
18629
|
/** The ID of the organization to remove from the enterprise. */
|
|
18369
18630
|
organizationId: Scalars['ID']['input'];
|
|
18370
18631
|
};
|
|
18371
|
-
/** Autogenerated return type of RemoveEnterpriseOrganization */
|
|
18632
|
+
/** Autogenerated return type of RemoveEnterpriseOrganization. */
|
|
18372
18633
|
type RemoveEnterpriseOrganizationPayload = {
|
|
18373
18634
|
__typename?: 'RemoveEnterpriseOrganizationPayload';
|
|
18374
18635
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18389,7 +18650,7 @@ type RemoveEnterpriseSupportEntitlementInput = {
|
|
|
18389
18650
|
/** The login of a member who will lose the support entitlement. */
|
|
18390
18651
|
login: Scalars['String']['input'];
|
|
18391
18652
|
};
|
|
18392
|
-
/** Autogenerated return type of RemoveEnterpriseSupportEntitlement */
|
|
18653
|
+
/** Autogenerated return type of RemoveEnterpriseSupportEntitlement. */
|
|
18393
18654
|
type RemoveEnterpriseSupportEntitlementPayload = {
|
|
18394
18655
|
__typename?: 'RemoveEnterpriseSupportEntitlementPayload';
|
|
18395
18656
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18406,7 +18667,7 @@ type RemoveLabelsFromLabelableInput = {
|
|
|
18406
18667
|
/** The id of the Labelable to remove labels from. */
|
|
18407
18668
|
labelableId: Scalars['ID']['input'];
|
|
18408
18669
|
};
|
|
18409
|
-
/** Autogenerated return type of RemoveLabelsFromLabelable */
|
|
18670
|
+
/** Autogenerated return type of RemoveLabelsFromLabelable. */
|
|
18410
18671
|
type RemoveLabelsFromLabelablePayload = {
|
|
18411
18672
|
__typename?: 'RemoveLabelsFromLabelablePayload';
|
|
18412
18673
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18423,7 +18684,7 @@ type RemoveOutsideCollaboratorInput = {
|
|
|
18423
18684
|
/** The ID of the outside collaborator to remove. */
|
|
18424
18685
|
userId: Scalars['ID']['input'];
|
|
18425
18686
|
};
|
|
18426
|
-
/** Autogenerated return type of RemoveOutsideCollaborator */
|
|
18687
|
+
/** Autogenerated return type of RemoveOutsideCollaborator. */
|
|
18427
18688
|
type RemoveOutsideCollaboratorPayload = {
|
|
18428
18689
|
__typename?: 'RemoveOutsideCollaboratorPayload';
|
|
18429
18690
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18440,7 +18701,7 @@ type RemoveReactionInput = {
|
|
|
18440
18701
|
/** The Node ID of the subject to modify. */
|
|
18441
18702
|
subjectId: Scalars['ID']['input'];
|
|
18442
18703
|
};
|
|
18443
|
-
/** Autogenerated return type of RemoveReaction */
|
|
18704
|
+
/** Autogenerated return type of RemoveReaction. */
|
|
18444
18705
|
type RemoveReactionPayload = {
|
|
18445
18706
|
__typename?: 'RemoveReactionPayload';
|
|
18446
18707
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18459,7 +18720,7 @@ type RemoveStarInput = {
|
|
|
18459
18720
|
/** The Starrable ID to unstar. */
|
|
18460
18721
|
starrableId: Scalars['ID']['input'];
|
|
18461
18722
|
};
|
|
18462
|
-
/** Autogenerated return type of RemoveStar */
|
|
18723
|
+
/** Autogenerated return type of RemoveStar. */
|
|
18463
18724
|
type RemoveStarPayload = {
|
|
18464
18725
|
__typename?: 'RemoveStarPayload';
|
|
18465
18726
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18474,7 +18735,7 @@ type RemoveUpvoteInput = {
|
|
|
18474
18735
|
/** The Node ID of the discussion or comment to remove upvote. */
|
|
18475
18736
|
subjectId: Scalars['ID']['input'];
|
|
18476
18737
|
};
|
|
18477
|
-
/** Autogenerated return type of RemoveUpvote */
|
|
18738
|
+
/** Autogenerated return type of RemoveUpvote. */
|
|
18478
18739
|
type RemoveUpvotePayload = {
|
|
18479
18740
|
__typename?: 'RemoveUpvotePayload';
|
|
18480
18741
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18543,7 +18804,7 @@ type ReopenDiscussionInput = {
|
|
|
18543
18804
|
/** ID of the discussion to be reopened. */
|
|
18544
18805
|
discussionId: Scalars['ID']['input'];
|
|
18545
18806
|
};
|
|
18546
|
-
/** Autogenerated return type of ReopenDiscussion */
|
|
18807
|
+
/** Autogenerated return type of ReopenDiscussion. */
|
|
18547
18808
|
type ReopenDiscussionPayload = {
|
|
18548
18809
|
__typename?: 'ReopenDiscussionPayload';
|
|
18549
18810
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18558,7 +18819,7 @@ type ReopenIssueInput = {
|
|
|
18558
18819
|
/** ID of the issue to be opened. */
|
|
18559
18820
|
issueId: Scalars['ID']['input'];
|
|
18560
18821
|
};
|
|
18561
|
-
/** Autogenerated return type of ReopenIssue */
|
|
18822
|
+
/** Autogenerated return type of ReopenIssue. */
|
|
18562
18823
|
type ReopenIssuePayload = {
|
|
18563
18824
|
__typename?: 'ReopenIssuePayload';
|
|
18564
18825
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18573,7 +18834,7 @@ type ReopenPullRequestInput = {
|
|
|
18573
18834
|
/** ID of the pull request to be reopened. */
|
|
18574
18835
|
pullRequestId: Scalars['ID']['input'];
|
|
18575
18836
|
};
|
|
18576
|
-
/** Autogenerated return type of ReopenPullRequest */
|
|
18837
|
+
/** Autogenerated return type of ReopenPullRequest. */
|
|
18577
18838
|
type ReopenPullRequestPayload = {
|
|
18578
18839
|
__typename?: 'ReopenPullRequestPayload';
|
|
18579
18840
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -18595,6 +18856,23 @@ type ReopenedEvent = Node & {
|
|
|
18595
18856
|
/** The reason the issue state was changed to open. */
|
|
18596
18857
|
stateReason?: Maybe<IssueStateReason>;
|
|
18597
18858
|
};
|
|
18859
|
+
/** Autogenerated input type of ReorderEnvironment */
|
|
18860
|
+
type ReorderEnvironmentInput = {
|
|
18861
|
+
/** A unique identifier for the client performing the mutation. */
|
|
18862
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
18863
|
+
/** The ID of the environment to modify */
|
|
18864
|
+
environmentId: Scalars['ID']['input'];
|
|
18865
|
+
/** The desired position of the environment */
|
|
18866
|
+
position: Scalars['Int']['input'];
|
|
18867
|
+
};
|
|
18868
|
+
/** Autogenerated return type of ReorderEnvironment. */
|
|
18869
|
+
type ReorderEnvironmentPayload = {
|
|
18870
|
+
__typename?: 'ReorderEnvironmentPayload';
|
|
18871
|
+
/** A unique identifier for the client performing the mutation. */
|
|
18872
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
18873
|
+
/** The environment that was reordered */
|
|
18874
|
+
environment?: Maybe<Environment>;
|
|
18875
|
+
};
|
|
18598
18876
|
/** Audit log entry for a repo.access event. */
|
|
18599
18877
|
type RepoAccessAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & RepositoryAuditEntryData & {
|
|
18600
18878
|
__typename?: 'RepoAccessAuditEntry';
|
|
@@ -19767,6 +20045,8 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
19767
20045
|
parent?: Maybe<Repository>;
|
|
19768
20046
|
/** A list of discussions that have been pinned in this repository. */
|
|
19769
20047
|
pinnedDiscussions: PinnedDiscussionConnection;
|
|
20048
|
+
/** A list of pinned environments for this repository. */
|
|
20049
|
+
pinnedEnvironments?: Maybe<PinnedEnvironmentConnection>;
|
|
19770
20050
|
/** A list of pinned issues for this repository. */
|
|
19771
20051
|
pinnedIssues?: Maybe<PinnedIssueConnection>;
|
|
19772
20052
|
/** Returns information about the availability of certain features and limits based on the repository's billing plan. */
|
|
@@ -19981,6 +20261,7 @@ type RepositoryEnvironmentsArgs = {
|
|
|
19981
20261
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19982
20262
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19983
20263
|
orderBy?: InputMaybe<Environments>;
|
|
20264
|
+
pinnedEnvironmentFilter?: InputMaybe<EnvironmentPinnedFilterField>;
|
|
19984
20265
|
};
|
|
19985
20266
|
/** A repository contains the content for a project. */
|
|
19986
20267
|
type RepositoryForksArgs = {
|
|
@@ -20086,6 +20367,14 @@ type RepositoryPinnedDiscussionsArgs = {
|
|
|
20086
20367
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
20087
20368
|
};
|
|
20088
20369
|
/** A repository contains the content for a project. */
|
|
20370
|
+
type RepositoryPinnedEnvironmentsArgs = {
|
|
20371
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
20372
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
20373
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20374
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
20375
|
+
orderBy?: InputMaybe<PinnedEnvironmentOrder>;
|
|
20376
|
+
};
|
|
20377
|
+
/** A repository contains the content for a project. */
|
|
20089
20378
|
type RepositoryPinnedIssuesArgs = {
|
|
20090
20379
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
20091
20380
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -21286,7 +21575,7 @@ type RequestReviewsInput = {
|
|
|
21286
21575
|
/** The Node IDs of the user to request. */
|
|
21287
21576
|
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
21288
21577
|
};
|
|
21289
|
-
/** Autogenerated return type of RequestReviews */
|
|
21578
|
+
/** Autogenerated return type of RequestReviews. */
|
|
21290
21579
|
type RequestReviewsPayload = {
|
|
21291
21580
|
__typename?: 'RequestReviewsPayload';
|
|
21292
21581
|
/** Identifies the actor who performed the event. */
|
|
@@ -21410,7 +21699,7 @@ type RerequestCheckSuiteInput = {
|
|
|
21410
21699
|
/** The Node ID of the repository. */
|
|
21411
21700
|
repositoryId: Scalars['ID']['input'];
|
|
21412
21701
|
};
|
|
21413
|
-
/** Autogenerated return type of RerequestCheckSuite */
|
|
21702
|
+
/** Autogenerated return type of RerequestCheckSuite. */
|
|
21414
21703
|
type RerequestCheckSuitePayload = {
|
|
21415
21704
|
__typename?: 'RerequestCheckSuitePayload';
|
|
21416
21705
|
/** The requested check suite. */
|
|
@@ -21425,7 +21714,7 @@ type ResolveReviewThreadInput = {
|
|
|
21425
21714
|
/** The ID of the thread to resolve */
|
|
21426
21715
|
threadId: Scalars['ID']['input'];
|
|
21427
21716
|
};
|
|
21428
|
-
/** Autogenerated return type of ResolveReviewThread */
|
|
21717
|
+
/** Autogenerated return type of ResolveReviewThread. */
|
|
21429
21718
|
type ResolveReviewThreadPayload = {
|
|
21430
21719
|
__typename?: 'ResolveReviewThreadPayload';
|
|
21431
21720
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -21458,7 +21747,7 @@ type RetireSponsorsTierInput = {
|
|
|
21458
21747
|
/** The ID of the published tier to retire. */
|
|
21459
21748
|
tierId: Scalars['ID']['input'];
|
|
21460
21749
|
};
|
|
21461
|
-
/** Autogenerated return type of RetireSponsorsTier */
|
|
21750
|
+
/** Autogenerated return type of RetireSponsorsTier. */
|
|
21462
21751
|
type RetireSponsorsTierPayload = {
|
|
21463
21752
|
__typename?: 'RetireSponsorsTierPayload';
|
|
21464
21753
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -21479,7 +21768,7 @@ type RevertPullRequestInput = {
|
|
|
21479
21768
|
/** The title of the revert pull request. */
|
|
21480
21769
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
21481
21770
|
};
|
|
21482
|
-
/** Autogenerated return type of RevertPullRequest */
|
|
21771
|
+
/** Autogenerated return type of RevertPullRequest. */
|
|
21483
21772
|
type RevertPullRequestPayload = {
|
|
21484
21773
|
__typename?: 'RevertPullRequestPayload';
|
|
21485
21774
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -21633,7 +21922,7 @@ type RevokeEnterpriseOrganizationsMigratorRoleInput = {
|
|
|
21633
21922
|
/** The login of the user to revoke the migrator role */
|
|
21634
21923
|
login: Scalars['String']['input'];
|
|
21635
21924
|
};
|
|
21636
|
-
/** Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole */
|
|
21925
|
+
/** Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole. */
|
|
21637
21926
|
type RevokeEnterpriseOrganizationsMigratorRolePayload = {
|
|
21638
21927
|
__typename?: 'RevokeEnterpriseOrganizationsMigratorRolePayload';
|
|
21639
21928
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -21641,7 +21930,7 @@ type RevokeEnterpriseOrganizationsMigratorRolePayload = {
|
|
|
21641
21930
|
/** The organizations that had the migrator role revoked for the given user. */
|
|
21642
21931
|
organizations?: Maybe<OrganizationConnection>;
|
|
21643
21932
|
};
|
|
21644
|
-
/** Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole */
|
|
21933
|
+
/** Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole. */
|
|
21645
21934
|
type RevokeEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs = {
|
|
21646
21935
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21647
21936
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -21659,7 +21948,7 @@ type RevokeMigratorRoleInput = {
|
|
|
21659
21948
|
/** The ID of the organization that the user/team belongs to. */
|
|
21660
21949
|
organizationId: Scalars['ID']['input'];
|
|
21661
21950
|
};
|
|
21662
|
-
/** Autogenerated return type of RevokeMigratorRole */
|
|
21951
|
+
/** Autogenerated return type of RevokeMigratorRole. */
|
|
21663
21952
|
type RevokeMigratorRolePayload = {
|
|
21664
21953
|
__typename?: 'RevokeMigratorRolePayload';
|
|
21665
21954
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -22107,7 +22396,7 @@ type SetEnterpriseIdentityProviderInput = {
|
|
|
22107
22396
|
/** The URL endpoint for the identity provider's SAML SSO. */
|
|
22108
22397
|
ssoUrl: Scalars['URI']['input'];
|
|
22109
22398
|
};
|
|
22110
|
-
/** Autogenerated return type of SetEnterpriseIdentityProvider */
|
|
22399
|
+
/** Autogenerated return type of SetEnterpriseIdentityProvider. */
|
|
22111
22400
|
type SetEnterpriseIdentityProviderPayload = {
|
|
22112
22401
|
__typename?: 'SetEnterpriseIdentityProviderPayload';
|
|
22113
22402
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -22126,7 +22415,7 @@ type SetOrganizationInteractionLimitInput = {
|
|
|
22126
22415
|
/** The ID of the organization to set a limit for. */
|
|
22127
22416
|
organizationId: Scalars['ID']['input'];
|
|
22128
22417
|
};
|
|
22129
|
-
/** Autogenerated return type of SetOrganizationInteractionLimit */
|
|
22418
|
+
/** Autogenerated return type of SetOrganizationInteractionLimit. */
|
|
22130
22419
|
type SetOrganizationInteractionLimitPayload = {
|
|
22131
22420
|
__typename?: 'SetOrganizationInteractionLimitPayload';
|
|
22132
22421
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -22145,7 +22434,7 @@ type SetRepositoryInteractionLimitInput = {
|
|
|
22145
22434
|
/** The ID of the repository to set a limit for. */
|
|
22146
22435
|
repositoryId: Scalars['ID']['input'];
|
|
22147
22436
|
};
|
|
22148
|
-
/** Autogenerated return type of SetRepositoryInteractionLimit */
|
|
22437
|
+
/** Autogenerated return type of SetRepositoryInteractionLimit. */
|
|
22149
22438
|
type SetRepositoryInteractionLimitPayload = {
|
|
22150
22439
|
__typename?: 'SetRepositoryInteractionLimitPayload';
|
|
22151
22440
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -22164,7 +22453,7 @@ type SetUserInteractionLimitInput = {
|
|
|
22164
22453
|
/** The ID of the user to set a limit for. */
|
|
22165
22454
|
userId: Scalars['ID']['input'];
|
|
22166
22455
|
};
|
|
22167
|
-
/** Autogenerated return type of SetUserInteractionLimit */
|
|
22456
|
+
/** Autogenerated return type of SetUserInteractionLimit. */
|
|
22168
22457
|
type SetUserInteractionLimitPayload = {
|
|
22169
22458
|
__typename?: 'SetUserInteractionLimitPayload';
|
|
22170
22459
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -23582,7 +23871,7 @@ type StartOrganizationMigrationInput = {
|
|
|
23582
23871
|
/** The name of the target organization. */
|
|
23583
23872
|
targetOrgName: Scalars['String']['input'];
|
|
23584
23873
|
};
|
|
23585
|
-
/** Autogenerated return type of StartOrganizationMigration */
|
|
23874
|
+
/** Autogenerated return type of StartOrganizationMigration. */
|
|
23586
23875
|
type StartOrganizationMigrationPayload = {
|
|
23587
23876
|
__typename?: 'StartOrganizationMigrationPayload';
|
|
23588
23877
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -23619,7 +23908,7 @@ type StartRepositoryMigrationInput = {
|
|
|
23619
23908
|
/** The visibility of the imported repository. */
|
|
23620
23909
|
targetRepoVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
23621
23910
|
};
|
|
23622
|
-
/** Autogenerated return type of StartRepositoryMigration */
|
|
23911
|
+
/** Autogenerated return type of StartRepositoryMigration. */
|
|
23623
23912
|
type StartRepositoryMigrationPayload = {
|
|
23624
23913
|
__typename?: 'StartRepositoryMigrationPayload';
|
|
23625
23914
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -23809,7 +24098,7 @@ type SubmitPullRequestReviewInput = {
|
|
|
23809
24098
|
/** The Pull Request Review ID to submit. */
|
|
23810
24099
|
pullRequestReviewId?: InputMaybe<Scalars['ID']['input']>;
|
|
23811
24100
|
};
|
|
23812
|
-
/** Autogenerated return type of SubmitPullRequestReview */
|
|
24101
|
+
/** Autogenerated return type of SubmitPullRequestReview. */
|
|
23813
24102
|
type SubmitPullRequestReviewPayload = {
|
|
23814
24103
|
__typename?: 'SubmitPullRequestReviewPayload';
|
|
23815
24104
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -24989,7 +25278,7 @@ type TransferEnterpriseOrganizationInput = {
|
|
|
24989
25278
|
/** The ID of the organization to transfer. */
|
|
24990
25279
|
organizationId: Scalars['ID']['input'];
|
|
24991
25280
|
};
|
|
24992
|
-
/** Autogenerated return type of TransferEnterpriseOrganization */
|
|
25281
|
+
/** Autogenerated return type of TransferEnterpriseOrganization. */
|
|
24993
25282
|
type TransferEnterpriseOrganizationPayload = {
|
|
24994
25283
|
__typename?: 'TransferEnterpriseOrganizationPayload';
|
|
24995
25284
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25008,7 +25297,7 @@ type TransferIssueInput = {
|
|
|
25008
25297
|
/** The Node ID of the repository the issue should be transferred to */
|
|
25009
25298
|
repositoryId: Scalars['ID']['input'];
|
|
25010
25299
|
};
|
|
25011
|
-
/** Autogenerated return type of TransferIssue */
|
|
25300
|
+
/** Autogenerated return type of TransferIssue. */
|
|
25012
25301
|
type TransferIssuePayload = {
|
|
25013
25302
|
__typename?: 'TransferIssuePayload';
|
|
25014
25303
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25091,7 +25380,7 @@ type UnarchiveProjectV2ItemInput = {
|
|
|
25091
25380
|
/** The ID of the Project to archive the item from. */
|
|
25092
25381
|
projectId: Scalars['ID']['input'];
|
|
25093
25382
|
};
|
|
25094
|
-
/** Autogenerated return type of UnarchiveProjectV2Item */
|
|
25383
|
+
/** Autogenerated return type of UnarchiveProjectV2Item. */
|
|
25095
25384
|
type UnarchiveProjectV2ItemPayload = {
|
|
25096
25385
|
__typename?: 'UnarchiveProjectV2ItemPayload';
|
|
25097
25386
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25106,7 +25395,7 @@ type UnarchiveRepositoryInput = {
|
|
|
25106
25395
|
/** The ID of the repository to unarchive. */
|
|
25107
25396
|
repositoryId: Scalars['ID']['input'];
|
|
25108
25397
|
};
|
|
25109
|
-
/** Autogenerated return type of UnarchiveRepository */
|
|
25398
|
+
/** Autogenerated return type of UnarchiveRepository. */
|
|
25110
25399
|
type UnarchiveRepositoryPayload = {
|
|
25111
25400
|
__typename?: 'UnarchiveRepositoryPayload';
|
|
25112
25401
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25140,7 +25429,7 @@ type UnfollowOrganizationInput = {
|
|
|
25140
25429
|
/** ID of the organization to unfollow. */
|
|
25141
25430
|
organizationId: Scalars['ID']['input'];
|
|
25142
25431
|
};
|
|
25143
|
-
/** Autogenerated return type of UnfollowOrganization */
|
|
25432
|
+
/** Autogenerated return type of UnfollowOrganization. */
|
|
25144
25433
|
type UnfollowOrganizationPayload = {
|
|
25145
25434
|
__typename?: 'UnfollowOrganizationPayload';
|
|
25146
25435
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25155,7 +25444,7 @@ type UnfollowUserInput = {
|
|
|
25155
25444
|
/** ID of the user to unfollow. */
|
|
25156
25445
|
userId: Scalars['ID']['input'];
|
|
25157
25446
|
};
|
|
25158
|
-
/** Autogenerated return type of UnfollowUser */
|
|
25447
|
+
/** Autogenerated return type of UnfollowUser. */
|
|
25159
25448
|
type UnfollowUserPayload = {
|
|
25160
25449
|
__typename?: 'UnfollowUserPayload';
|
|
25161
25450
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25214,7 +25503,7 @@ type UnlinkProjectV2FromRepositoryInput = {
|
|
|
25214
25503
|
/** The ID of the repository to unlink from the project. */
|
|
25215
25504
|
repositoryId: Scalars['ID']['input'];
|
|
25216
25505
|
};
|
|
25217
|
-
/** Autogenerated return type of UnlinkProjectV2FromRepository */
|
|
25506
|
+
/** Autogenerated return type of UnlinkProjectV2FromRepository. */
|
|
25218
25507
|
type UnlinkProjectV2FromRepositoryPayload = {
|
|
25219
25508
|
__typename?: 'UnlinkProjectV2FromRepositoryPayload';
|
|
25220
25509
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25231,7 +25520,7 @@ type UnlinkProjectV2FromTeamInput = {
|
|
|
25231
25520
|
/** The ID of the team to unlink from the project. */
|
|
25232
25521
|
teamId: Scalars['ID']['input'];
|
|
25233
25522
|
};
|
|
25234
|
-
/** Autogenerated return type of UnlinkProjectV2FromTeam */
|
|
25523
|
+
/** Autogenerated return type of UnlinkProjectV2FromTeam. */
|
|
25235
25524
|
type UnlinkProjectV2FromTeamPayload = {
|
|
25236
25525
|
__typename?: 'UnlinkProjectV2FromTeamPayload';
|
|
25237
25526
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25248,7 +25537,7 @@ type UnlinkRepositoryFromProjectInput = {
|
|
|
25248
25537
|
/** The ID of the Repository linked to the Project. */
|
|
25249
25538
|
repositoryId: Scalars['ID']['input'];
|
|
25250
25539
|
};
|
|
25251
|
-
/** Autogenerated return type of UnlinkRepositoryFromProject */
|
|
25540
|
+
/** Autogenerated return type of UnlinkRepositoryFromProject. */
|
|
25252
25541
|
type UnlinkRepositoryFromProjectPayload = {
|
|
25253
25542
|
__typename?: 'UnlinkRepositoryFromProjectPayload';
|
|
25254
25543
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25265,7 +25554,7 @@ type UnlockLockableInput = {
|
|
|
25265
25554
|
/** ID of the item to be unlocked. */
|
|
25266
25555
|
lockableId: Scalars['ID']['input'];
|
|
25267
25556
|
};
|
|
25268
|
-
/** Autogenerated return type of UnlockLockable */
|
|
25557
|
+
/** Autogenerated return type of UnlockLockable. */
|
|
25269
25558
|
type UnlockLockablePayload = {
|
|
25270
25559
|
__typename?: 'UnlockLockablePayload';
|
|
25271
25560
|
/** Identifies the actor who performed the event. */
|
|
@@ -25294,7 +25583,7 @@ type UnmarkDiscussionCommentAsAnswerInput = {
|
|
|
25294
25583
|
/** The Node ID of the discussion comment to unmark as an answer. */
|
|
25295
25584
|
id: Scalars['ID']['input'];
|
|
25296
25585
|
};
|
|
25297
|
-
/** Autogenerated return type of UnmarkDiscussionCommentAsAnswer */
|
|
25586
|
+
/** Autogenerated return type of UnmarkDiscussionCommentAsAnswer. */
|
|
25298
25587
|
type UnmarkDiscussionCommentAsAnswerPayload = {
|
|
25299
25588
|
__typename?: 'UnmarkDiscussionCommentAsAnswerPayload';
|
|
25300
25589
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25311,7 +25600,7 @@ type UnmarkFileAsViewedInput = {
|
|
|
25311
25600
|
/** The Node ID of the pull request. */
|
|
25312
25601
|
pullRequestId: Scalars['ID']['input'];
|
|
25313
25602
|
};
|
|
25314
|
-
/** Autogenerated return type of UnmarkFileAsViewed */
|
|
25603
|
+
/** Autogenerated return type of UnmarkFileAsViewed. */
|
|
25315
25604
|
type UnmarkFileAsViewedPayload = {
|
|
25316
25605
|
__typename?: 'UnmarkFileAsViewedPayload';
|
|
25317
25606
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25328,7 +25617,7 @@ type UnmarkIssueAsDuplicateInput = {
|
|
|
25328
25617
|
/** ID of the issue or pull request currently marked as a duplicate. */
|
|
25329
25618
|
duplicateId: Scalars['ID']['input'];
|
|
25330
25619
|
};
|
|
25331
|
-
/** Autogenerated return type of UnmarkIssueAsDuplicate */
|
|
25620
|
+
/** Autogenerated return type of UnmarkIssueAsDuplicate. */
|
|
25332
25621
|
type UnmarkIssueAsDuplicatePayload = {
|
|
25333
25622
|
__typename?: 'UnmarkIssueAsDuplicatePayload';
|
|
25334
25623
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25343,7 +25632,7 @@ type UnmarkProjectV2AsTemplateInput = {
|
|
|
25343
25632
|
/** The ID of the Project to unmark as a template. */
|
|
25344
25633
|
projectId: Scalars['ID']['input'];
|
|
25345
25634
|
};
|
|
25346
|
-
/** Autogenerated return type of UnmarkProjectV2AsTemplate */
|
|
25635
|
+
/** Autogenerated return type of UnmarkProjectV2AsTemplate. */
|
|
25347
25636
|
type UnmarkProjectV2AsTemplatePayload = {
|
|
25348
25637
|
__typename?: 'UnmarkProjectV2AsTemplatePayload';
|
|
25349
25638
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25374,7 +25663,7 @@ type UnminimizeCommentInput = {
|
|
|
25374
25663
|
/** The Node ID of the subject to modify. */
|
|
25375
25664
|
subjectId: Scalars['ID']['input'];
|
|
25376
25665
|
};
|
|
25377
|
-
/** Autogenerated return type of UnminimizeComment */
|
|
25666
|
+
/** Autogenerated return type of UnminimizeComment. */
|
|
25378
25667
|
type UnminimizeCommentPayload = {
|
|
25379
25668
|
__typename?: 'UnminimizeCommentPayload';
|
|
25380
25669
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25389,7 +25678,7 @@ type UnpinIssueInput = {
|
|
|
25389
25678
|
/** The ID of the issue to be unpinned */
|
|
25390
25679
|
issueId: Scalars['ID']['input'];
|
|
25391
25680
|
};
|
|
25392
|
-
/** Autogenerated return type of UnpinIssue */
|
|
25681
|
+
/** Autogenerated return type of UnpinIssue. */
|
|
25393
25682
|
type UnpinIssuePayload = {
|
|
25394
25683
|
__typename?: 'UnpinIssuePayload';
|
|
25395
25684
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25418,7 +25707,7 @@ type UnresolveReviewThreadInput = {
|
|
|
25418
25707
|
/** The ID of the thread to unresolve */
|
|
25419
25708
|
threadId: Scalars['ID']['input'];
|
|
25420
25709
|
};
|
|
25421
|
-
/** Autogenerated return type of UnresolveReviewThread */
|
|
25710
|
+
/** Autogenerated return type of UnresolveReviewThread. */
|
|
25422
25711
|
type UnresolveReviewThreadPayload = {
|
|
25423
25712
|
__typename?: 'UnresolveReviewThreadPayload';
|
|
25424
25713
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25433,7 +25722,7 @@ type UnsubscribeFromNotificationsInput = {
|
|
|
25433
25722
|
/** The NotificationThread IDs of the objects to unsubscribe from. */
|
|
25434
25723
|
ids: Array<Scalars['ID']['input']>;
|
|
25435
25724
|
};
|
|
25436
|
-
/** Autogenerated return type of UnsubscribeFromNotifications */
|
|
25725
|
+
/** Autogenerated return type of UnsubscribeFromNotifications. */
|
|
25437
25726
|
type UnsubscribeFromNotificationsPayload = {
|
|
25438
25727
|
__typename?: 'UnsubscribeFromNotificationsPayload';
|
|
25439
25728
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25527,7 +25816,7 @@ type UpdateBranchProtectionRuleInput = {
|
|
|
25527
25816
|
/** A list of User, Team, or App IDs allowed to dismiss reviews on pull requests targeting matching branches. */
|
|
25528
25817
|
reviewDismissalActorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25529
25818
|
};
|
|
25530
|
-
/** Autogenerated return type of UpdateBranchProtectionRule */
|
|
25819
|
+
/** Autogenerated return type of UpdateBranchProtectionRule. */
|
|
25531
25820
|
type UpdateBranchProtectionRulePayload = {
|
|
25532
25821
|
__typename?: 'UpdateBranchProtectionRulePayload';
|
|
25533
25822
|
/** The newly created BranchProtectionRule. */
|
|
@@ -25562,7 +25851,7 @@ type UpdateCheckRunInput = {
|
|
|
25562
25851
|
/** The current status. */
|
|
25563
25852
|
status?: InputMaybe<RequestableCheckStatusState>;
|
|
25564
25853
|
};
|
|
25565
|
-
/** Autogenerated return type of UpdateCheckRun */
|
|
25854
|
+
/** Autogenerated return type of UpdateCheckRun. */
|
|
25566
25855
|
type UpdateCheckRunPayload = {
|
|
25567
25856
|
__typename?: 'UpdateCheckRunPayload';
|
|
25568
25857
|
/** The updated check run. */
|
|
@@ -25579,7 +25868,7 @@ type UpdateCheckSuitePreferencesInput = {
|
|
|
25579
25868
|
/** The Node ID of the repository. */
|
|
25580
25869
|
repositoryId: Scalars['ID']['input'];
|
|
25581
25870
|
};
|
|
25582
|
-
/** Autogenerated return type of UpdateCheckSuitePreferences */
|
|
25871
|
+
/** Autogenerated return type of UpdateCheckSuitePreferences. */
|
|
25583
25872
|
type UpdateCheckSuitePreferencesPayload = {
|
|
25584
25873
|
__typename?: 'UpdateCheckSuitePreferencesPayload';
|
|
25585
25874
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25596,7 +25885,7 @@ type UpdateDiscussionCommentInput = {
|
|
|
25596
25885
|
/** The Node ID of the discussion comment to update. */
|
|
25597
25886
|
commentId: Scalars['ID']['input'];
|
|
25598
25887
|
};
|
|
25599
|
-
/** Autogenerated return type of UpdateDiscussionComment */
|
|
25888
|
+
/** Autogenerated return type of UpdateDiscussionComment. */
|
|
25600
25889
|
type UpdateDiscussionCommentPayload = {
|
|
25601
25890
|
__typename?: 'UpdateDiscussionCommentPayload';
|
|
25602
25891
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25617,7 +25906,7 @@ type UpdateDiscussionInput = {
|
|
|
25617
25906
|
/** The new discussion title. */
|
|
25618
25907
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
25619
25908
|
};
|
|
25620
|
-
/** Autogenerated return type of UpdateDiscussion */
|
|
25909
|
+
/** Autogenerated return type of UpdateDiscussion. */
|
|
25621
25910
|
type UpdateDiscussionPayload = {
|
|
25622
25911
|
__typename?: 'UpdateDiscussionPayload';
|
|
25623
25912
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25636,7 +25925,7 @@ type UpdateEnterpriseAdministratorRoleInput = {
|
|
|
25636
25925
|
/** The new role for the Enterprise administrator. */
|
|
25637
25926
|
role: EnterpriseAdministratorRole;
|
|
25638
25927
|
};
|
|
25639
|
-
/** Autogenerated return type of UpdateEnterpriseAdministratorRole */
|
|
25928
|
+
/** Autogenerated return type of UpdateEnterpriseAdministratorRole. */
|
|
25640
25929
|
type UpdateEnterpriseAdministratorRolePayload = {
|
|
25641
25930
|
__typename?: 'UpdateEnterpriseAdministratorRolePayload';
|
|
25642
25931
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25655,7 +25944,7 @@ type UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput = {
|
|
|
25655
25944
|
/** The value for the allow private repository forking setting on the enterprise. */
|
|
25656
25945
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25657
25946
|
};
|
|
25658
|
-
/** Autogenerated return type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting */
|
|
25947
|
+
/** Autogenerated return type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting. */
|
|
25659
25948
|
type UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload = {
|
|
25660
25949
|
__typename?: 'UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload';
|
|
25661
25950
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25674,7 +25963,7 @@ type UpdateEnterpriseDefaultRepositoryPermissionSettingInput = {
|
|
|
25674
25963
|
/** The value for the base repository permission setting on the enterprise. */
|
|
25675
25964
|
settingValue: EnterpriseDefaultRepositoryPermissionSettingValue;
|
|
25676
25965
|
};
|
|
25677
|
-
/** Autogenerated return type of UpdateEnterpriseDefaultRepositoryPermissionSetting */
|
|
25966
|
+
/** Autogenerated return type of UpdateEnterpriseDefaultRepositoryPermissionSetting. */
|
|
25678
25967
|
type UpdateEnterpriseDefaultRepositoryPermissionSettingPayload = {
|
|
25679
25968
|
__typename?: 'UpdateEnterpriseDefaultRepositoryPermissionSettingPayload';
|
|
25680
25969
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25693,7 +25982,7 @@ type UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput = {
|
|
|
25693
25982
|
/** The value for the members can change repository visibility setting on the enterprise. */
|
|
25694
25983
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25695
25984
|
};
|
|
25696
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting */
|
|
25985
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting. */
|
|
25697
25986
|
type UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload = {
|
|
25698
25987
|
__typename?: 'UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload';
|
|
25699
25988
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25723,7 +26012,7 @@ type UpdateEnterpriseMembersCanCreateRepositoriesSettingInput = {
|
|
|
25723
26012
|
*/
|
|
25724
26013
|
settingValue?: InputMaybe<EnterpriseMembersCanCreateRepositoriesSettingValue>;
|
|
25725
26014
|
};
|
|
25726
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanCreateRepositoriesSetting */
|
|
26015
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanCreateRepositoriesSetting. */
|
|
25727
26016
|
type UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload = {
|
|
25728
26017
|
__typename?: 'UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload';
|
|
25729
26018
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25742,7 +26031,7 @@ type UpdateEnterpriseMembersCanDeleteIssuesSettingInput = {
|
|
|
25742
26031
|
/** The value for the members can delete issues setting on the enterprise. */
|
|
25743
26032
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25744
26033
|
};
|
|
25745
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanDeleteIssuesSetting */
|
|
26034
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanDeleteIssuesSetting. */
|
|
25746
26035
|
type UpdateEnterpriseMembersCanDeleteIssuesSettingPayload = {
|
|
25747
26036
|
__typename?: 'UpdateEnterpriseMembersCanDeleteIssuesSettingPayload';
|
|
25748
26037
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25761,7 +26050,7 @@ type UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput = {
|
|
|
25761
26050
|
/** The value for the members can delete repositories setting on the enterprise. */
|
|
25762
26051
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25763
26052
|
};
|
|
25764
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting */
|
|
26053
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting. */
|
|
25765
26054
|
type UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload = {
|
|
25766
26055
|
__typename?: 'UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload';
|
|
25767
26056
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25780,7 +26069,7 @@ type UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput = {
|
|
|
25780
26069
|
/** The value for the members can invite collaborators setting on the enterprise. */
|
|
25781
26070
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25782
26071
|
};
|
|
25783
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting */
|
|
26072
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting. */
|
|
25784
26073
|
type UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload = {
|
|
25785
26074
|
__typename?: 'UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload';
|
|
25786
26075
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25799,7 +26088,7 @@ type UpdateEnterpriseMembersCanMakePurchasesSettingInput = {
|
|
|
25799
26088
|
/** The value for the members can make purchases setting on the enterprise. */
|
|
25800
26089
|
settingValue: EnterpriseMembersCanMakePurchasesSettingValue;
|
|
25801
26090
|
};
|
|
25802
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanMakePurchasesSetting */
|
|
26091
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanMakePurchasesSetting. */
|
|
25803
26092
|
type UpdateEnterpriseMembersCanMakePurchasesSettingPayload = {
|
|
25804
26093
|
__typename?: 'UpdateEnterpriseMembersCanMakePurchasesSettingPayload';
|
|
25805
26094
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25818,7 +26107,7 @@ type UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput = {
|
|
|
25818
26107
|
/** The value for the members can update protected branches setting on the enterprise. */
|
|
25819
26108
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25820
26109
|
};
|
|
25821
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting */
|
|
26110
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting. */
|
|
25822
26111
|
type UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload = {
|
|
25823
26112
|
__typename?: 'UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload';
|
|
25824
26113
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25837,7 +26126,7 @@ type UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput = {
|
|
|
25837
26126
|
/** The value for the members can view dependency insights setting on the enterprise. */
|
|
25838
26127
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25839
26128
|
};
|
|
25840
|
-
/** Autogenerated return type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting */
|
|
26129
|
+
/** Autogenerated return type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting. */
|
|
25841
26130
|
type UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload = {
|
|
25842
26131
|
__typename?: 'UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload';
|
|
25843
26132
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25856,7 +26145,7 @@ type UpdateEnterpriseOrganizationProjectsSettingInput = {
|
|
|
25856
26145
|
/** The value for the organization projects setting on the enterprise. */
|
|
25857
26146
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25858
26147
|
};
|
|
25859
|
-
/** Autogenerated return type of UpdateEnterpriseOrganizationProjectsSetting */
|
|
26148
|
+
/** Autogenerated return type of UpdateEnterpriseOrganizationProjectsSetting. */
|
|
25860
26149
|
type UpdateEnterpriseOrganizationProjectsSettingPayload = {
|
|
25861
26150
|
__typename?: 'UpdateEnterpriseOrganizationProjectsSettingPayload';
|
|
25862
26151
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25877,7 +26166,7 @@ type UpdateEnterpriseOwnerOrganizationRoleInput = {
|
|
|
25877
26166
|
/** The role to assume in the organization. */
|
|
25878
26167
|
organizationRole: RoleInOrganization;
|
|
25879
26168
|
};
|
|
25880
|
-
/** Autogenerated return type of UpdateEnterpriseOwnerOrganizationRole */
|
|
26169
|
+
/** Autogenerated return type of UpdateEnterpriseOwnerOrganizationRole. */
|
|
25881
26170
|
type UpdateEnterpriseOwnerOrganizationRolePayload = {
|
|
25882
26171
|
__typename?: 'UpdateEnterpriseOwnerOrganizationRolePayload';
|
|
25883
26172
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25900,7 +26189,7 @@ type UpdateEnterpriseProfileInput = {
|
|
|
25900
26189
|
/** The URL of the enterprise's website. */
|
|
25901
26190
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
25902
26191
|
};
|
|
25903
|
-
/** Autogenerated return type of UpdateEnterpriseProfile */
|
|
26192
|
+
/** Autogenerated return type of UpdateEnterpriseProfile. */
|
|
25904
26193
|
type UpdateEnterpriseProfilePayload = {
|
|
25905
26194
|
__typename?: 'UpdateEnterpriseProfilePayload';
|
|
25906
26195
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25917,7 +26206,7 @@ type UpdateEnterpriseRepositoryProjectsSettingInput = {
|
|
|
25917
26206
|
/** The value for the repository projects setting on the enterprise. */
|
|
25918
26207
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25919
26208
|
};
|
|
25920
|
-
/** Autogenerated return type of UpdateEnterpriseRepositoryProjectsSetting */
|
|
26209
|
+
/** Autogenerated return type of UpdateEnterpriseRepositoryProjectsSetting. */
|
|
25921
26210
|
type UpdateEnterpriseRepositoryProjectsSettingPayload = {
|
|
25922
26211
|
__typename?: 'UpdateEnterpriseRepositoryProjectsSettingPayload';
|
|
25923
26212
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25936,7 +26225,7 @@ type UpdateEnterpriseTeamDiscussionsSettingInput = {
|
|
|
25936
26225
|
/** The value for the team discussions setting on the enterprise. */
|
|
25937
26226
|
settingValue: EnterpriseEnabledDisabledSettingValue;
|
|
25938
26227
|
};
|
|
25939
|
-
/** Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting */
|
|
26228
|
+
/** Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting. */
|
|
25940
26229
|
type UpdateEnterpriseTeamDiscussionsSettingPayload = {
|
|
25941
26230
|
__typename?: 'UpdateEnterpriseTeamDiscussionsSettingPayload';
|
|
25942
26231
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25955,7 +26244,7 @@ type UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput = {
|
|
|
25955
26244
|
/** The value for the two factor authentication required setting on the enterprise. */
|
|
25956
26245
|
settingValue: EnterpriseEnabledSettingValue;
|
|
25957
26246
|
};
|
|
25958
|
-
/** Autogenerated return type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting */
|
|
26247
|
+
/** Autogenerated return type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting. */
|
|
25959
26248
|
type UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload = {
|
|
25960
26249
|
__typename?: 'UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload';
|
|
25961
26250
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25978,7 +26267,7 @@ type UpdateEnvironmentInput = {
|
|
|
25978
26267
|
/** The wait timer in minutes. */
|
|
25979
26268
|
waitTimer?: InputMaybe<Scalars['Int']['input']>;
|
|
25980
26269
|
};
|
|
25981
|
-
/** Autogenerated return type of UpdateEnvironment */
|
|
26270
|
+
/** Autogenerated return type of UpdateEnvironment. */
|
|
25982
26271
|
type UpdateEnvironmentPayload = {
|
|
25983
26272
|
__typename?: 'UpdateEnvironmentPayload';
|
|
25984
26273
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -25995,7 +26284,7 @@ type UpdateIpAllowListEnabledSettingInput = {
|
|
|
25995
26284
|
/** The value for the IP allow list enabled setting. */
|
|
25996
26285
|
settingValue: IpAllowListEnabledSettingValue;
|
|
25997
26286
|
};
|
|
25998
|
-
/** Autogenerated return type of UpdateIpAllowListEnabledSetting */
|
|
26287
|
+
/** Autogenerated return type of UpdateIpAllowListEnabledSetting. */
|
|
25999
26288
|
type UpdateIpAllowListEnabledSettingPayload = {
|
|
26000
26289
|
__typename?: 'UpdateIpAllowListEnabledSettingPayload';
|
|
26001
26290
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26016,7 +26305,7 @@ type UpdateIpAllowListEntryInput = {
|
|
|
26016
26305
|
/** An optional name for the IP allow list entry. */
|
|
26017
26306
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
26018
26307
|
};
|
|
26019
|
-
/** Autogenerated return type of UpdateIpAllowListEntry */
|
|
26308
|
+
/** Autogenerated return type of UpdateIpAllowListEntry. */
|
|
26020
26309
|
type UpdateIpAllowListEntryPayload = {
|
|
26021
26310
|
__typename?: 'UpdateIpAllowListEntryPayload';
|
|
26022
26311
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26033,7 +26322,7 @@ type UpdateIpAllowListForInstalledAppsEnabledSettingInput = {
|
|
|
26033
26322
|
/** The value for the IP allow list configuration for installed GitHub Apps setting. */
|
|
26034
26323
|
settingValue: IpAllowListForInstalledAppsEnabledSettingValue;
|
|
26035
26324
|
};
|
|
26036
|
-
/** Autogenerated return type of UpdateIpAllowListForInstalledAppsEnabledSetting */
|
|
26325
|
+
/** Autogenerated return type of UpdateIpAllowListForInstalledAppsEnabledSetting. */
|
|
26037
26326
|
type UpdateIpAllowListForInstalledAppsEnabledSettingPayload = {
|
|
26038
26327
|
__typename?: 'UpdateIpAllowListForInstalledAppsEnabledSettingPayload';
|
|
26039
26328
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26050,7 +26339,7 @@ type UpdateIssueCommentInput = {
|
|
|
26050
26339
|
/** The ID of the IssueComment to modify. */
|
|
26051
26340
|
id: Scalars['ID']['input'];
|
|
26052
26341
|
};
|
|
26053
|
-
/** Autogenerated return type of UpdateIssueComment */
|
|
26342
|
+
/** Autogenerated return type of UpdateIssueComment. */
|
|
26054
26343
|
type UpdateIssueCommentPayload = {
|
|
26055
26344
|
__typename?: 'UpdateIssueCommentPayload';
|
|
26056
26345
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26079,7 +26368,7 @@ type UpdateIssueInput = {
|
|
|
26079
26368
|
/** The title for the issue. */
|
|
26080
26369
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
26081
26370
|
};
|
|
26082
|
-
/** Autogenerated return type of UpdateIssue */
|
|
26371
|
+
/** Autogenerated return type of UpdateIssue. */
|
|
26083
26372
|
type UpdateIssuePayload = {
|
|
26084
26373
|
__typename?: 'UpdateIssuePayload';
|
|
26085
26374
|
/** Identifies the actor who performed the event. */
|
|
@@ -26102,7 +26391,7 @@ type UpdateLabelInput = {
|
|
|
26102
26391
|
/** The updated name of the label. */
|
|
26103
26392
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
26104
26393
|
};
|
|
26105
|
-
/** Autogenerated return type of UpdateLabel */
|
|
26394
|
+
/** Autogenerated return type of UpdateLabel. */
|
|
26106
26395
|
type UpdateLabelPayload = {
|
|
26107
26396
|
__typename?: 'UpdateLabelPayload';
|
|
26108
26397
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26119,7 +26408,7 @@ type UpdateNotificationRestrictionSettingInput = {
|
|
|
26119
26408
|
/** The value for the restrict notifications setting. */
|
|
26120
26409
|
settingValue: NotificationRestrictionSettingValue;
|
|
26121
26410
|
};
|
|
26122
|
-
/** Autogenerated return type of UpdateNotificationRestrictionSetting */
|
|
26411
|
+
/** Autogenerated return type of UpdateNotificationRestrictionSetting. */
|
|
26123
26412
|
type UpdateNotificationRestrictionSettingPayload = {
|
|
26124
26413
|
__typename?: 'UpdateNotificationRestrictionSettingPayload';
|
|
26125
26414
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26136,7 +26425,7 @@ type UpdateOrganizationAllowPrivateRepositoryForkingSettingInput = {
|
|
|
26136
26425
|
/** The ID of the organization on which to set the allow private repository forking setting. */
|
|
26137
26426
|
organizationId: Scalars['ID']['input'];
|
|
26138
26427
|
};
|
|
26139
|
-
/** Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting */
|
|
26428
|
+
/** Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting. */
|
|
26140
26429
|
type UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload = {
|
|
26141
26430
|
__typename?: 'UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload';
|
|
26142
26431
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26155,7 +26444,7 @@ type UpdateOrganizationWebCommitSignoffSettingInput = {
|
|
|
26155
26444
|
/** Enable signoff on web-based commits for repositories in the organization? */
|
|
26156
26445
|
webCommitSignoffRequired: Scalars['Boolean']['input'];
|
|
26157
26446
|
};
|
|
26158
|
-
/** Autogenerated return type of UpdateOrganizationWebCommitSignoffSetting */
|
|
26447
|
+
/** Autogenerated return type of UpdateOrganizationWebCommitSignoffSetting. */
|
|
26159
26448
|
type UpdateOrganizationWebCommitSignoffSettingPayload = {
|
|
26160
26449
|
__typename?: 'UpdateOrganizationWebCommitSignoffSettingPayload';
|
|
26161
26450
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26191,7 +26480,7 @@ type UpdatePatreonSponsorabilityInput = {
|
|
|
26191
26480
|
*/
|
|
26192
26481
|
sponsorableLogin?: InputMaybe<Scalars['String']['input']>;
|
|
26193
26482
|
};
|
|
26194
|
-
/** Autogenerated return type of UpdatePatreonSponsorability */
|
|
26483
|
+
/** Autogenerated return type of UpdatePatreonSponsorability. */
|
|
26195
26484
|
type UpdatePatreonSponsorabilityPayload = {
|
|
26196
26485
|
__typename?: 'UpdatePatreonSponsorabilityPayload';
|
|
26197
26486
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26210,7 +26499,7 @@ type UpdateProjectCardInput = {
|
|
|
26210
26499
|
/** The ProjectCard ID to update. */
|
|
26211
26500
|
projectCardId: Scalars['ID']['input'];
|
|
26212
26501
|
};
|
|
26213
|
-
/** Autogenerated return type of UpdateProjectCard */
|
|
26502
|
+
/** Autogenerated return type of UpdateProjectCard. */
|
|
26214
26503
|
type UpdateProjectCardPayload = {
|
|
26215
26504
|
__typename?: 'UpdateProjectCardPayload';
|
|
26216
26505
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26227,7 +26516,7 @@ type UpdateProjectColumnInput = {
|
|
|
26227
26516
|
/** The ProjectColumn ID to update. */
|
|
26228
26517
|
projectColumnId: Scalars['ID']['input'];
|
|
26229
26518
|
};
|
|
26230
|
-
/** Autogenerated return type of UpdateProjectColumn */
|
|
26519
|
+
/** Autogenerated return type of UpdateProjectColumn. */
|
|
26231
26520
|
type UpdateProjectColumnPayload = {
|
|
26232
26521
|
__typename?: 'UpdateProjectColumnPayload';
|
|
26233
26522
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26250,7 +26539,7 @@ type UpdateProjectInput = {
|
|
|
26250
26539
|
/** Whether the project is open or closed. */
|
|
26251
26540
|
state?: InputMaybe<ProjectState>;
|
|
26252
26541
|
};
|
|
26253
|
-
/** Autogenerated return type of UpdateProject */
|
|
26542
|
+
/** Autogenerated return type of UpdateProject. */
|
|
26254
26543
|
type UpdateProjectPayload = {
|
|
26255
26544
|
__typename?: 'UpdateProjectPayload';
|
|
26256
26545
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26267,7 +26556,7 @@ type UpdateProjectV2CollaboratorsInput = {
|
|
|
26267
26556
|
/** The ID of the project to update the collaborators for. */
|
|
26268
26557
|
projectId: Scalars['ID']['input'];
|
|
26269
26558
|
};
|
|
26270
|
-
/** Autogenerated return type of UpdateProjectV2Collaborators */
|
|
26559
|
+
/** Autogenerated return type of UpdateProjectV2Collaborators. */
|
|
26271
26560
|
type UpdateProjectV2CollaboratorsPayload = {
|
|
26272
26561
|
__typename?: 'UpdateProjectV2CollaboratorsPayload';
|
|
26273
26562
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26275,7 +26564,7 @@ type UpdateProjectV2CollaboratorsPayload = {
|
|
|
26275
26564
|
/** The collaborators granted a role */
|
|
26276
26565
|
collaborators?: Maybe<ProjectV2ActorConnection>;
|
|
26277
26566
|
};
|
|
26278
|
-
/** Autogenerated return type of UpdateProjectV2Collaborators */
|
|
26567
|
+
/** Autogenerated return type of UpdateProjectV2Collaborators. */
|
|
26279
26568
|
type UpdateProjectV2CollaboratorsPayloadCollaboratorsArgs = {
|
|
26280
26569
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26281
26570
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26295,7 +26584,7 @@ type UpdateProjectV2DraftIssueInput = {
|
|
|
26295
26584
|
/** The title of the draft issue. */
|
|
26296
26585
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
26297
26586
|
};
|
|
26298
|
-
/** Autogenerated return type of UpdateProjectV2DraftIssue */
|
|
26587
|
+
/** Autogenerated return type of UpdateProjectV2DraftIssue. */
|
|
26299
26588
|
type UpdateProjectV2DraftIssuePayload = {
|
|
26300
26589
|
__typename?: 'UpdateProjectV2DraftIssuePayload';
|
|
26301
26590
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26333,7 +26622,7 @@ type UpdateProjectV2ItemFieldValueInput = {
|
|
|
26333
26622
|
/** The value which will be set on the field. */
|
|
26334
26623
|
value: ProjectV2FieldValue;
|
|
26335
26624
|
};
|
|
26336
|
-
/** Autogenerated return type of UpdateProjectV2ItemFieldValue */
|
|
26625
|
+
/** Autogenerated return type of UpdateProjectV2ItemFieldValue. */
|
|
26337
26626
|
type UpdateProjectV2ItemFieldValuePayload = {
|
|
26338
26627
|
__typename?: 'UpdateProjectV2ItemFieldValuePayload';
|
|
26339
26628
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26352,7 +26641,7 @@ type UpdateProjectV2ItemPositionInput = {
|
|
|
26352
26641
|
/** The ID of the Project. */
|
|
26353
26642
|
projectId: Scalars['ID']['input'];
|
|
26354
26643
|
};
|
|
26355
|
-
/** Autogenerated return type of UpdateProjectV2ItemPosition */
|
|
26644
|
+
/** Autogenerated return type of UpdateProjectV2ItemPosition. */
|
|
26356
26645
|
type UpdateProjectV2ItemPositionPayload = {
|
|
26357
26646
|
__typename?: 'UpdateProjectV2ItemPositionPayload';
|
|
26358
26647
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26360,14 +26649,14 @@ type UpdateProjectV2ItemPositionPayload = {
|
|
|
26360
26649
|
/** The items in the new order */
|
|
26361
26650
|
items?: Maybe<ProjectV2ItemConnection>;
|
|
26362
26651
|
};
|
|
26363
|
-
/** Autogenerated return type of UpdateProjectV2ItemPosition */
|
|
26652
|
+
/** Autogenerated return type of UpdateProjectV2ItemPosition. */
|
|
26364
26653
|
type UpdateProjectV2ItemPositionPayloadItemsArgs = {
|
|
26365
26654
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26366
26655
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
26367
26656
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26368
26657
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
26369
26658
|
};
|
|
26370
|
-
/** Autogenerated return type of UpdateProjectV2 */
|
|
26659
|
+
/** Autogenerated return type of UpdateProjectV2. */
|
|
26371
26660
|
type UpdateProjectV2Payload = {
|
|
26372
26661
|
__typename?: 'UpdateProjectV2Payload';
|
|
26373
26662
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26386,7 +26675,7 @@ type UpdatePullRequestBranchInput = {
|
|
|
26386
26675
|
/** The update branch method to use. If omitted, defaults to 'MERGE' */
|
|
26387
26676
|
updateMethod?: InputMaybe<PullRequestBranchUpdateMethod>;
|
|
26388
26677
|
};
|
|
26389
|
-
/** Autogenerated return type of UpdatePullRequestBranch */
|
|
26678
|
+
/** Autogenerated return type of UpdatePullRequestBranch. */
|
|
26390
26679
|
type UpdatePullRequestBranchPayload = {
|
|
26391
26680
|
__typename?: 'UpdatePullRequestBranchPayload';
|
|
26392
26681
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26422,7 +26711,7 @@ type UpdatePullRequestInput = {
|
|
|
26422
26711
|
/** The title of the pull request. */
|
|
26423
26712
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
26424
26713
|
};
|
|
26425
|
-
/** Autogenerated return type of UpdatePullRequest */
|
|
26714
|
+
/** Autogenerated return type of UpdatePullRequest. */
|
|
26426
26715
|
type UpdatePullRequestPayload = {
|
|
26427
26716
|
__typename?: 'UpdatePullRequestPayload';
|
|
26428
26717
|
/** Identifies the actor who performed the event. */
|
|
@@ -26441,7 +26730,7 @@ type UpdatePullRequestReviewCommentInput = {
|
|
|
26441
26730
|
/** The Node ID of the comment to modify. */
|
|
26442
26731
|
pullRequestReviewCommentId: Scalars['ID']['input'];
|
|
26443
26732
|
};
|
|
26444
|
-
/** Autogenerated return type of UpdatePullRequestReviewComment */
|
|
26733
|
+
/** Autogenerated return type of UpdatePullRequestReviewComment. */
|
|
26445
26734
|
type UpdatePullRequestReviewCommentPayload = {
|
|
26446
26735
|
__typename?: 'UpdatePullRequestReviewCommentPayload';
|
|
26447
26736
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26458,7 +26747,7 @@ type UpdatePullRequestReviewInput = {
|
|
|
26458
26747
|
/** The Node ID of the pull request review to modify. */
|
|
26459
26748
|
pullRequestReviewId: Scalars['ID']['input'];
|
|
26460
26749
|
};
|
|
26461
|
-
/** Autogenerated return type of UpdatePullRequestReview */
|
|
26750
|
+
/** Autogenerated return type of UpdatePullRequestReview. */
|
|
26462
26751
|
type UpdatePullRequestReviewPayload = {
|
|
26463
26752
|
__typename?: 'UpdatePullRequestReviewPayload';
|
|
26464
26753
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26477,7 +26766,7 @@ type UpdateRefInput = {
|
|
|
26477
26766
|
/** The Node ID of the Ref to be updated. */
|
|
26478
26767
|
refId: Scalars['ID']['input'];
|
|
26479
26768
|
};
|
|
26480
|
-
/** Autogenerated return type of UpdateRef */
|
|
26769
|
+
/** Autogenerated return type of UpdateRef. */
|
|
26481
26770
|
type UpdateRefPayload = {
|
|
26482
26771
|
__typename?: 'UpdateRefPayload';
|
|
26483
26772
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26494,7 +26783,7 @@ type UpdateRefsInput = {
|
|
|
26494
26783
|
/** The Node ID of the repository. */
|
|
26495
26784
|
repositoryId: Scalars['ID']['input'];
|
|
26496
26785
|
};
|
|
26497
|
-
/** Autogenerated return type of UpdateRefs */
|
|
26786
|
+
/** Autogenerated return type of UpdateRefs. */
|
|
26498
26787
|
type UpdateRefsPayload = {
|
|
26499
26788
|
__typename?: 'UpdateRefsPayload';
|
|
26500
26789
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26528,7 +26817,7 @@ type UpdateRepositoryInput = {
|
|
|
26528
26817
|
*/
|
|
26529
26818
|
template?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26530
26819
|
};
|
|
26531
|
-
/** Autogenerated return type of UpdateRepository */
|
|
26820
|
+
/** Autogenerated return type of UpdateRepository. */
|
|
26532
26821
|
type UpdateRepositoryPayload = {
|
|
26533
26822
|
__typename?: 'UpdateRepositoryPayload';
|
|
26534
26823
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26555,7 +26844,7 @@ type UpdateRepositoryRulesetInput = {
|
|
|
26555
26844
|
/** The target of the ruleset. */
|
|
26556
26845
|
target?: InputMaybe<RepositoryRulesetTarget>;
|
|
26557
26846
|
};
|
|
26558
|
-
/** Autogenerated return type of UpdateRepositoryRuleset */
|
|
26847
|
+
/** Autogenerated return type of UpdateRepositoryRuleset. */
|
|
26559
26848
|
type UpdateRepositoryRulesetPayload = {
|
|
26560
26849
|
__typename?: 'UpdateRepositoryRulesetPayload';
|
|
26561
26850
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26572,7 +26861,7 @@ type UpdateRepositoryWebCommitSignoffSettingInput = {
|
|
|
26572
26861
|
/** Indicates if the repository should require signoff on web-based commits. */
|
|
26573
26862
|
webCommitSignoffRequired: Scalars['Boolean']['input'];
|
|
26574
26863
|
};
|
|
26575
|
-
/** Autogenerated return type of UpdateRepositoryWebCommitSignoffSetting */
|
|
26864
|
+
/** Autogenerated return type of UpdateRepositoryWebCommitSignoffSetting. */
|
|
26576
26865
|
type UpdateRepositoryWebCommitSignoffSettingPayload = {
|
|
26577
26866
|
__typename?: 'UpdateRepositoryWebCommitSignoffSettingPayload';
|
|
26578
26867
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26608,7 +26897,7 @@ type UpdateSponsorshipPreferencesInput = {
|
|
|
26608
26897
|
/** The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given. */
|
|
26609
26898
|
sponsorableLogin?: InputMaybe<Scalars['String']['input']>;
|
|
26610
26899
|
};
|
|
26611
|
-
/** Autogenerated return type of UpdateSponsorshipPreferences */
|
|
26900
|
+
/** Autogenerated return type of UpdateSponsorshipPreferences. */
|
|
26612
26901
|
type UpdateSponsorshipPreferencesPayload = {
|
|
26613
26902
|
__typename?: 'UpdateSponsorshipPreferencesPayload';
|
|
26614
26903
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26625,7 +26914,7 @@ type UpdateSubscriptionInput = {
|
|
|
26625
26914
|
/** The Node ID of the subscribable object to modify. */
|
|
26626
26915
|
subscribableId: Scalars['ID']['input'];
|
|
26627
26916
|
};
|
|
26628
|
-
/** Autogenerated return type of UpdateSubscription */
|
|
26917
|
+
/** Autogenerated return type of UpdateSubscription. */
|
|
26629
26918
|
type UpdateSubscriptionPayload = {
|
|
26630
26919
|
__typename?: 'UpdateSubscriptionPayload';
|
|
26631
26920
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26644,7 +26933,7 @@ type UpdateTeamDiscussionCommentInput = {
|
|
|
26644
26933
|
/** The ID of the comment to modify. */
|
|
26645
26934
|
id: Scalars['ID']['input'];
|
|
26646
26935
|
};
|
|
26647
|
-
/** Autogenerated return type of UpdateTeamDiscussionComment */
|
|
26936
|
+
/** Autogenerated return type of UpdateTeamDiscussionComment. */
|
|
26648
26937
|
type UpdateTeamDiscussionCommentPayload = {
|
|
26649
26938
|
__typename?: 'UpdateTeamDiscussionCommentPayload';
|
|
26650
26939
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26670,7 +26959,7 @@ type UpdateTeamDiscussionInput = {
|
|
|
26670
26959
|
/** The updated title of the discussion. */
|
|
26671
26960
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
26672
26961
|
};
|
|
26673
|
-
/** Autogenerated return type of UpdateTeamDiscussion */
|
|
26962
|
+
/** Autogenerated return type of UpdateTeamDiscussion. */
|
|
26674
26963
|
type UpdateTeamDiscussionPayload = {
|
|
26675
26964
|
__typename?: 'UpdateTeamDiscussionPayload';
|
|
26676
26965
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26701,7 +26990,7 @@ type UpdateTeamReviewAssignmentInput = {
|
|
|
26701
26990
|
/** The number of team members to assign */
|
|
26702
26991
|
teamMemberCount?: InputMaybe<Scalars['Int']['input']>;
|
|
26703
26992
|
};
|
|
26704
|
-
/** Autogenerated return type of UpdateTeamReviewAssignment */
|
|
26993
|
+
/** Autogenerated return type of UpdateTeamReviewAssignment. */
|
|
26705
26994
|
type UpdateTeamReviewAssignmentPayload = {
|
|
26706
26995
|
__typename?: 'UpdateTeamReviewAssignmentPayload';
|
|
26707
26996
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26720,7 +27009,7 @@ type UpdateTeamsRepositoryInput = {
|
|
|
26720
27009
|
/** A list of teams being granted access. Limit: 10 */
|
|
26721
27010
|
teamIds: Array<Scalars['ID']['input']>;
|
|
26722
27011
|
};
|
|
26723
|
-
/** Autogenerated return type of UpdateTeamsRepository */
|
|
27012
|
+
/** Autogenerated return type of UpdateTeamsRepository. */
|
|
26724
27013
|
type UpdateTeamsRepositoryPayload = {
|
|
26725
27014
|
__typename?: 'UpdateTeamsRepositoryPayload';
|
|
26726
27015
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26739,7 +27028,7 @@ type UpdateTopicsInput = {
|
|
|
26739
27028
|
/** An array of topic names. */
|
|
26740
27029
|
topicNames: Array<Scalars['String']['input']>;
|
|
26741
27030
|
};
|
|
26742
|
-
/** Autogenerated return type of UpdateTopics */
|
|
27031
|
+
/** Autogenerated return type of UpdateTopics. */
|
|
26743
27032
|
type UpdateTopicsPayload = {
|
|
26744
27033
|
__typename?: 'UpdateTopicsPayload';
|
|
26745
27034
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26762,7 +27051,7 @@ type UpdateUserListInput = {
|
|
|
26762
27051
|
/** The name of the list */
|
|
26763
27052
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
26764
27053
|
};
|
|
26765
|
-
/** Autogenerated return type of UpdateUserList */
|
|
27054
|
+
/** Autogenerated return type of UpdateUserList. */
|
|
26766
27055
|
type UpdateUserListPayload = {
|
|
26767
27056
|
__typename?: 'UpdateUserListPayload';
|
|
26768
27057
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26781,7 +27070,7 @@ type UpdateUserListsForItemInput = {
|
|
|
26781
27070
|
/** The suggested lists to create and add this item to */
|
|
26782
27071
|
suggestedListIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
26783
27072
|
};
|
|
26784
|
-
/** Autogenerated return type of UpdateUserListsForItem */
|
|
27073
|
+
/** Autogenerated return type of UpdateUserListsForItem. */
|
|
26785
27074
|
type UpdateUserListsForItemPayload = {
|
|
26786
27075
|
__typename?: 'UpdateUserListsForItemPayload';
|
|
26787
27076
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -26814,6 +27103,8 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
|
|
|
26814
27103
|
companyHTML: Scalars['HTML']['output'];
|
|
26815
27104
|
/** The collection of contributions this user has made to different repositories. */
|
|
26816
27105
|
contributionsCollection: ContributionsCollection;
|
|
27106
|
+
/** The user's Copilot endpoint information */
|
|
27107
|
+
copilotEndpoints?: Maybe<CopilotEndpoints>;
|
|
26817
27108
|
/** Identifies the date and time when the object was created. */
|
|
26818
27109
|
createdAt: Scalars['DateTime']['output'];
|
|
26819
27110
|
/** Identifies the primary key from the database. */
|
|
@@ -27681,7 +27972,7 @@ type VerifyVerifiableDomainInput = {
|
|
|
27681
27972
|
/** The ID of the verifiable domain to verify. */
|
|
27682
27973
|
id: Scalars['ID']['input'];
|
|
27683
27974
|
};
|
|
27684
|
-
/** Autogenerated return type of VerifyVerifiableDomain */
|
|
27975
|
+
/** Autogenerated return type of VerifyVerifiableDomain. */
|
|
27685
27976
|
type VerifyVerifiableDomainPayload = {
|
|
27686
27977
|
__typename?: 'VerifyVerifiableDomainPayload';
|
|
27687
27978
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -27882,4 +28173,4 @@ type WorkflowsParametersInput = {
|
|
|
27882
28173
|
workflows: Array<WorkflowFileReferenceInput>;
|
|
27883
28174
|
};
|
|
27884
28175
|
|
|
27885
|
-
export type { AbortQueuedMigrationsInput, AbortQueuedMigrationsPayload, AbortRepositoryMigrationInput, AbortRepositoryMigrationPayload, AcceptEnterpriseAdministratorInvitationInput, AcceptEnterpriseAdministratorInvitationPayload, AcceptTopicSuggestionInput, AcceptTopicSuggestionPayload, Actor, ActorAvatarUrlArgs, ActorLocation, ActorType, AddAssigneesToAssignableInput, AddAssigneesToAssignablePayload, AddCommentInput, AddCommentPayload, AddDiscussionCommentInput, AddDiscussionCommentPayload, AddDiscussionPollVoteInput, AddDiscussionPollVotePayload, AddEnterpriseOrganizationMemberInput, AddEnterpriseOrganizationMemberPayload, AddEnterpriseSupportEntitlementInput, AddEnterpriseSupportEntitlementPayload, AddLabelsToLabelableInput, AddLabelsToLabelablePayload, AddProjectCardInput, AddProjectCardPayload, AddProjectColumnInput, AddProjectColumnPayload, AddProjectV2DraftIssueInput, AddProjectV2DraftIssuePayload, AddProjectV2ItemByIdInput, AddProjectV2ItemByIdPayload, AddPullRequestReviewCommentInput, AddPullRequestReviewCommentPayload, AddPullRequestReviewInput, AddPullRequestReviewPayload, AddPullRequestReviewThreadInput, AddPullRequestReviewThreadPayload, AddPullRequestReviewThreadReplyInput, AddPullRequestReviewThreadReplyPayload, AddReactionInput, AddReactionPayload, AddStarInput, AddStarPayload, AddUpvoteInput, AddUpvotePayload, AddVerifiableDomainInput, AddVerifiableDomainPayload, AddedToMergeQueueEvent, AddedToProjectEvent, AnnouncementBanner, App, AppIpAllowListEntriesArgs, AppLogoUrlArgs, ApproveDeploymentsInput, ApproveDeploymentsPayload, ApproveVerifiableDomainInput, ApproveVerifiableDomainPayload, ArchiveProjectV2ItemInput, ArchiveProjectV2ItemPayload, ArchiveRepositoryInput, ArchiveRepositoryPayload, Assignable, AssignableAssigneesArgs, AssignedEvent, Assignee, AuditEntry, AuditEntryActor, AuditLogOrder, AuditLogOrderField, AutoMergeDisabledEvent, AutoMergeEnabledEvent, AutoMergeRequest, AutoRebaseEnabledEvent, AutoSquashEnabledEvent, AutomaticBaseChangeFailedEvent, AutomaticBaseChangeSucceededEvent, BaseRefChangedEvent, BaseRefDeletedEvent, BaseRefForcePushedEvent, Blame, BlameRange, Blob, Bot, BotAvatarUrlArgs, BranchActorAllowanceActor, BranchNamePatternParameters, BranchNamePatternParametersInput, BranchProtectionRule, BranchProtectionRuleBranchProtectionRuleConflictsArgs, BranchProtectionRuleBypassForcePushAllowancesArgs, BranchProtectionRuleBypassPullRequestAllowancesArgs, BranchProtectionRuleConflict, BranchProtectionRuleConflictConnection, BranchProtectionRuleConflictEdge, BranchProtectionRuleConnection, BranchProtectionRuleEdge, BranchProtectionRuleMatchingRefsArgs, BranchProtectionRulePushAllowancesArgs, BranchProtectionRuleReviewDismissalAllowancesArgs, BulkSponsorship, BypassActor, BypassForcePushAllowance, BypassForcePushAllowanceConnection, BypassForcePushAllowanceEdge, BypassPullRequestAllowance, BypassPullRequestAllowanceConnection, BypassPullRequestAllowanceEdge, CancelEnterpriseAdminInvitationInput, CancelEnterpriseAdminInvitationPayload, CancelSponsorshipInput, CancelSponsorshipPayload, ChangeUserStatusInput, ChangeUserStatusPayload, CheckAnnotation, CheckAnnotationConnection, CheckAnnotationData, CheckAnnotationEdge, CheckAnnotationLevel, CheckAnnotationPosition, CheckAnnotationRange, CheckAnnotationSpan, CheckConclusionState, CheckRun, CheckRunAction, CheckRunAnnotationsArgs, CheckRunConnection, CheckRunEdge, CheckRunFilter, CheckRunIsRequiredArgs, CheckRunOutput, CheckRunOutputImage, CheckRunState, CheckRunStateCount, CheckRunStepsArgs, CheckRunType, CheckStatusState, CheckStep, CheckStepConnection, CheckStepEdge, CheckSuite, CheckSuiteAutoTriggerPreference, CheckSuiteCheckRunsArgs, CheckSuiteConnection, CheckSuiteEdge, CheckSuiteFilter, CheckSuiteMatchingPullRequestsArgs, Claimable, ClearLabelsFromLabelableInput, ClearLabelsFromLabelablePayload, ClearProjectV2ItemFieldValueInput, ClearProjectV2ItemFieldValuePayload, CloneProjectInput, CloneProjectPayload, CloneTemplateRepositoryInput, CloneTemplateRepositoryPayload, Closable, CloseDiscussionInput, CloseDiscussionPayload, CloseIssueInput, CloseIssuePayload, ClosePullRequestInput, ClosePullRequestPayload, ClosedEvent, Closer, CodeOfConduct, CodeScanningParameters, CodeScanningParametersInput, CodeScanningTool, CodeScanningToolInput, CollaboratorAffiliation, Comment, CommentAuthorAssociation, CommentCannotUpdateReason, CommentDeletedEvent, CommentUserContentEditsArgs, Commit, CommitAssociatedPullRequestsArgs, CommitAuthor, CommitAuthorEmailPatternParameters, CommitAuthorEmailPatternParametersInput, CommitAuthorsArgs, CommitBlameArgs, CommitCheckSuitesArgs, CommitComment, CommitCommentConnection, CommitCommentEdge, CommitCommentReactionsArgs, CommitCommentThread, CommitCommentThreadCommentsArgs, CommitCommentUserContentEditsArgs, CommitCommentsArgs, CommitConnection, CommitContributionOrder, CommitContributionOrderField, CommitContributionsByRepository, CommitContributionsByRepositoryContributionsArgs, CommitDeploymentsArgs, CommitEdge, CommitFileArgs, CommitHistoryArgs, CommitHistoryConnection, CommitMessage, CommitMessagePatternParameters, CommitMessagePatternParametersInput, CommitParentsArgs, CommitSubmodulesArgs, CommittableBranch, CommitterEmailPatternParameters, CommitterEmailPatternParametersInput, Comparison, ComparisonCommitConnection, ComparisonCommitsArgs, ComparisonStatus, ConnectedEvent, ContributingGuidelines, Contribution, ContributionCalendar, ContributionCalendarDay, ContributionCalendarMonth, ContributionCalendarWeek, ContributionLevel, ContributionOrder, ContributionsCollection, ContributionsCollectionCommitContributionsByRepositoryArgs, ContributionsCollectionIssueContributionsArgs, ContributionsCollectionIssueContributionsByRepositoryArgs, ContributionsCollectionPullRequestContributionsArgs, ContributionsCollectionPullRequestContributionsByRepositoryArgs, ContributionsCollectionPullRequestReviewContributionsArgs, ContributionsCollectionPullRequestReviewContributionsByRepositoryArgs, ContributionsCollectionRepositoryContributionsArgs, ContributionsCollectionTotalIssueContributionsArgs, ContributionsCollectionTotalPullRequestContributionsArgs, ContributionsCollectionTotalRepositoriesWithContributedIssuesArgs, ContributionsCollectionTotalRepositoriesWithContributedPullRequestsArgs, ContributionsCollectionTotalRepositoryContributionsArgs, ConvertProjectCardNoteToIssueInput, ConvertProjectCardNoteToIssuePayload, ConvertPullRequestToDraftInput, ConvertPullRequestToDraftPayload, ConvertToDraftEvent, ConvertedNoteToIssueEvent, ConvertedToDiscussionEvent, CopyProjectV2Input, CopyProjectV2Payload, CreateAttributionInvitationInput, CreateAttributionInvitationPayload, CreateBranchProtectionRuleInput, CreateBranchProtectionRulePayload, CreateCheckRunInput, CreateCheckRunPayload, CreateCheckSuiteInput, CreateCheckSuitePayload, CreateCommitOnBranchInput, CreateCommitOnBranchPayload, CreateDeploymentInput, CreateDeploymentPayload, CreateDeploymentStatusInput, CreateDeploymentStatusPayload, CreateDiscussionInput, CreateDiscussionPayload, CreateEnterpriseOrganizationInput, CreateEnterpriseOrganizationPayload, CreateEnvironmentInput, CreateEnvironmentPayload, CreateIpAllowListEntryInput, CreateIpAllowListEntryPayload, CreateIssueInput, CreateIssuePayload, CreateLabelInput, CreateLabelPayload, CreateLinkedBranchInput, CreateLinkedBranchPayload, CreateMigrationSourceInput, CreateMigrationSourcePayload, CreateProjectInput, CreateProjectPayload, CreateProjectV2FieldInput, CreateProjectV2FieldPayload, CreateProjectV2Input, CreateProjectV2Payload, CreatePullRequestInput, CreatePullRequestPayload, CreateRefInput, CreateRefPayload, CreateRepositoryInput, CreateRepositoryPayload, CreateRepositoryRulesetInput, CreateRepositoryRulesetPayload, CreateSponsorsListingInput, CreateSponsorsListingPayload, CreateSponsorsTierInput, CreateSponsorsTierPayload, CreateSponsorshipInput, CreateSponsorshipPayload, CreateSponsorshipsInput, CreateSponsorshipsPayload, CreateTeamDiscussionCommentInput, CreateTeamDiscussionCommentPayload, CreateTeamDiscussionInput, CreateTeamDiscussionPayload, CreateUserListInput, CreateUserListPayload, CreatedCommitContribution, CreatedCommitContributionConnection, CreatedCommitContributionEdge, CreatedIssueContribution, CreatedIssueContributionConnection, CreatedIssueContributionEdge, CreatedIssueOrRestrictedContribution, CreatedPullRequestContribution, CreatedPullRequestContributionConnection, CreatedPullRequestContributionEdge, CreatedPullRequestOrRestrictedContribution, CreatedPullRequestReviewContribution, CreatedPullRequestReviewContributionConnection, CreatedPullRequestReviewContributionEdge, CreatedRepositoryContribution, CreatedRepositoryContributionConnection, CreatedRepositoryContributionEdge, CreatedRepositoryOrRestrictedContribution, CrossReferencedEvent, Cvss, Cwe, CweConnection, CweEdge, DeclineTopicSuggestionInput, DeclineTopicSuggestionPayload, DefaultRepositoryPermissionField, Deletable, DeleteBranchProtectionRuleInput, DeleteBranchProtectionRulePayload, DeleteDeploymentInput, DeleteDeploymentPayload, DeleteDiscussionCommentInput, DeleteDiscussionCommentPayload, DeleteDiscussionInput, DeleteDiscussionPayload, DeleteEnvironmentInput, DeleteEnvironmentPayload, DeleteIpAllowListEntryInput, DeleteIpAllowListEntryPayload, DeleteIssueCommentInput, DeleteIssueCommentPayload, DeleteIssueInput, DeleteIssuePayload, DeleteLabelInput, DeleteLabelPayload, DeleteLinkedBranchInput, DeleteLinkedBranchPayload, DeletePackageVersionInput, DeletePackageVersionPayload, DeleteProjectCardInput, DeleteProjectCardPayload, DeleteProjectColumnInput, DeleteProjectColumnPayload, DeleteProjectInput, DeleteProjectPayload, DeleteProjectV2FieldInput, DeleteProjectV2FieldPayload, DeleteProjectV2Input, DeleteProjectV2ItemInput, DeleteProjectV2ItemPayload, DeleteProjectV2Payload, DeleteProjectV2WorkflowInput, DeleteProjectV2WorkflowPayload, DeletePullRequestReviewCommentInput, DeletePullRequestReviewCommentPayload, DeletePullRequestReviewInput, DeletePullRequestReviewPayload, DeleteRefInput, DeleteRefPayload, DeleteRepositoryRulesetInput, DeleteRepositoryRulesetPayload, DeleteTeamDiscussionCommentInput, DeleteTeamDiscussionCommentPayload, DeleteTeamDiscussionInput, DeleteTeamDiscussionPayload, DeleteUserListInput, DeleteUserListPayload, DeleteVerifiableDomainInput, DeleteVerifiableDomainPayload, DemilestonedEvent, DependabotUpdate, DependabotUpdateError, DependencyGraphDependency, DependencyGraphDependencyConnection, DependencyGraphDependencyEdge, DependencyGraphEcosystem, DependencyGraphManifest, DependencyGraphManifestConnection, DependencyGraphManifestDependenciesArgs, DependencyGraphManifestEdge, DeployKey, DeployKeyConnection, DeployKeyEdge, DeployedEvent, Deployment, DeploymentConnection, DeploymentEdge, DeploymentEnvironmentChangedEvent, DeploymentOrder, DeploymentOrderField, DeploymentProtectionRule, DeploymentProtectionRuleConnection, DeploymentProtectionRuleEdge, DeploymentProtectionRuleReviewersArgs, DeploymentProtectionRuleType, DeploymentRequest, DeploymentRequestConnection, DeploymentRequestEdge, DeploymentRequestReviewersArgs, DeploymentReview, DeploymentReviewConnection, DeploymentReviewEdge, DeploymentReviewEnvironmentsArgs, DeploymentReviewState, DeploymentReviewer, DeploymentReviewerConnection, DeploymentReviewerEdge, DeploymentState, DeploymentStatus, DeploymentStatusConnection, DeploymentStatusEdge, DeploymentStatusState, DeploymentStatusesArgs, DequeuePullRequestInput, DequeuePullRequestPayload, DiffSide, DisablePullRequestAutoMergeInput, DisablePullRequestAutoMergePayload, DisconnectedEvent, Discussion, DiscussionCategory, DiscussionCategoryConnection, DiscussionCategoryEdge, DiscussionCloseReason, DiscussionComment, DiscussionCommentConnection, DiscussionCommentEdge, DiscussionCommentReactionsArgs, DiscussionCommentRepliesArgs, DiscussionCommentUserContentEditsArgs, DiscussionCommentsArgs, DiscussionConnection, DiscussionEdge, DiscussionLabelsArgs, DiscussionOrder, DiscussionOrderField, DiscussionPoll, DiscussionPollOption, DiscussionPollOptionConnection, DiscussionPollOptionEdge, DiscussionPollOptionOrder, DiscussionPollOptionOrderField, DiscussionPollOptionsArgs, DiscussionReactionsArgs, DiscussionState, DiscussionStateReason, DiscussionUserContentEditsArgs, DismissPullRequestReviewInput, DismissPullRequestReviewPayload, DismissReason, DismissRepositoryVulnerabilityAlertInput, DismissRepositoryVulnerabilityAlertPayload, DraftIssue, DraftIssueAssigneesArgs, DraftIssueProjectV2ItemsArgs, DraftIssueProjectsV2Args, DraftPullRequestReviewComment, DraftPullRequestReviewThread, EnablePullRequestAutoMergeInput, EnablePullRequestAutoMergePayload, EnqueuePullRequestInput, EnqueuePullRequestPayload, Enterprise, EnterpriseAdministratorConnection, EnterpriseAdministratorEdge, EnterpriseAdministratorInvitation, EnterpriseAdministratorInvitationConnection, EnterpriseAdministratorInvitationEdge, EnterpriseAdministratorInvitationOrder, EnterpriseAdministratorInvitationOrderField, EnterpriseAdministratorRole, EnterpriseAllowPrivateRepositoryForkingPolicyValue, EnterpriseAuditEntryData, EnterpriseAvatarUrlArgs, EnterpriseBillingInfo, EnterpriseConnection, EnterpriseDefaultRepositoryPermissionSettingValue, EnterpriseEdge, EnterpriseEnabledDisabledSettingValue, EnterpriseEnabledSettingValue, EnterpriseFailedInvitationConnection, EnterpriseFailedInvitationEdge, EnterpriseIdentityProvider, EnterpriseIdentityProviderExternalIdentitiesArgs, EnterpriseMember, EnterpriseMemberConnection, EnterpriseMemberEdge, EnterpriseMemberOrder, EnterpriseMemberOrderField, EnterpriseMembersArgs, EnterpriseMembersCanCreateRepositoriesSettingValue, EnterpriseMembersCanMakePurchasesSettingValue, EnterpriseMembershipType, EnterpriseOrder, EnterpriseOrderField, EnterpriseOrganizationMembershipConnection, EnterpriseOrganizationMembershipEdge, EnterpriseOrganizationsArgs, EnterpriseOutsideCollaboratorConnection, EnterpriseOutsideCollaboratorEdge, EnterpriseOutsideCollaboratorEdgeRepositoriesArgs, EnterpriseOwnerInfo, EnterpriseOwnerInfoAdminsArgs, EnterpriseOwnerInfoAffiliatedUsersWithTwoFactorDisabledArgs, EnterpriseOwnerInfoAllowPrivateRepositoryForkingSettingOrganizationsArgs, EnterpriseOwnerInfoDefaultRepositoryPermissionSettingOrganizationsArgs, EnterpriseOwnerInfoDomainsArgs, EnterpriseOwnerInfoEnterpriseServerInstallationsArgs, EnterpriseOwnerInfoFailedInvitationsArgs, EnterpriseOwnerInfoIpAllowListEntriesArgs, EnterpriseOwnerInfoMembersCanChangeRepositoryVisibilitySettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanCreateRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteIssuesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanInviteCollaboratorsSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanUpdateProtectedBranchesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanViewDependencyInsightsSettingOrganizationsArgs, EnterpriseOwnerInfoOrganizationProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoOutsideCollaboratorsArgs, EnterpriseOwnerInfoPendingAdminInvitationsArgs, EnterpriseOwnerInfoPendingCollaboratorInvitationsArgs, EnterpriseOwnerInfoPendingMemberInvitationsArgs, EnterpriseOwnerInfoRepositoryProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoSamlIdentityProviderSettingOrganizationsArgs, EnterpriseOwnerInfoSupportEntitlementsArgs, EnterpriseOwnerInfoTeamDiscussionsSettingOrganizationsArgs, EnterpriseOwnerInfoTwoFactorRequiredSettingOrganizationsArgs, EnterprisePendingMemberInvitationConnection, EnterprisePendingMemberInvitationEdge, EnterpriseRepositoryInfo, EnterpriseRepositoryInfoConnection, EnterpriseRepositoryInfoEdge, EnterpriseServerInstallation, EnterpriseServerInstallationConnection, EnterpriseServerInstallationEdge, EnterpriseServerInstallationMembershipConnection, EnterpriseServerInstallationMembershipEdge, EnterpriseServerInstallationOrder, EnterpriseServerInstallationOrderField, EnterpriseServerInstallationUserAccountsArgs, EnterpriseServerInstallationUserAccountsUploadsArgs, EnterpriseServerUserAccount, EnterpriseServerUserAccountConnection, EnterpriseServerUserAccountEdge, EnterpriseServerUserAccountEmail, EnterpriseServerUserAccountEmailConnection, EnterpriseServerUserAccountEmailEdge, EnterpriseServerUserAccountEmailOrder, EnterpriseServerUserAccountEmailOrderField, EnterpriseServerUserAccountEmailsArgs, EnterpriseServerUserAccountOrder, EnterpriseServerUserAccountOrderField, EnterpriseServerUserAccountsUpload, EnterpriseServerUserAccountsUploadConnection, EnterpriseServerUserAccountsUploadEdge, EnterpriseServerUserAccountsUploadOrder, EnterpriseServerUserAccountsUploadOrderField, EnterpriseServerUserAccountsUploadSyncState, EnterpriseUserAccount, EnterpriseUserAccountAvatarUrlArgs, EnterpriseUserAccountEnterpriseInstallationsArgs, EnterpriseUserAccountMembershipRole, EnterpriseUserAccountOrganizationsArgs, EnterpriseUserDeployment, Environment, EnvironmentConnection, EnvironmentEdge, EnvironmentOrderField, EnvironmentProtectionRulesArgs, Environments, Exact, ExternalIdentity, ExternalIdentityAttribute, ExternalIdentityConnection, ExternalIdentityEdge, ExternalIdentitySamlAttributes, ExternalIdentityScimAttributes, FileAddition, FileChanges, FileDeletion, FileExtensionRestrictionParameters, FileExtensionRestrictionParametersInput, FilePathRestrictionParameters, FilePathRestrictionParametersInput, FileViewedState, FollowOrganizationInput, FollowOrganizationPayload, FollowUserInput, FollowUserPayload, FollowerConnection, FollowingConnection, FundingLink, FundingPlatform, GenericHovercardContext, Gist, GistComment, GistCommentConnection, GistCommentEdge, GistCommentUserContentEditsArgs, GistCommentsArgs, GistConnection, GistEdge, GistFile, GistFileTextArgs, GistFilesArgs, GistForksArgs, GistOrder, GistOrderField, GistPrivacy, GistStargazersArgs, GitActor, GitActorAvatarUrlArgs, GitActorConnection, GitActorEdge, GitHubMetadata, GitObject, GitSignature, GitSignatureState, GpgSignature, GrantEnterpriseOrganizationsMigratorRoleInput, GrantEnterpriseOrganizationsMigratorRolePayload, GrantEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs, GrantMigratorRoleInput, GrantMigratorRolePayload, HeadRefDeletedEvent, HeadRefForcePushedEvent, HeadRefRestoredEvent, Hovercard, HovercardContext, IdentityProviderConfigurationState, ImportProjectInput, ImportProjectPayload, Incremental, InputMaybe, InviteEnterpriseAdminInput, InviteEnterpriseAdminPayload, IpAllowListEnabledSettingValue, IpAllowListEntry, IpAllowListEntryConnection, IpAllowListEntryEdge, IpAllowListEntryOrder, IpAllowListEntryOrderField, IpAllowListForInstalledAppsEnabledSettingValue, IpAllowListOwner, Issue, IssueAssigneesArgs, IssueClosedStateReason, IssueComment, IssueCommentConnection, IssueCommentEdge, IssueCommentOrder, IssueCommentOrderField, IssueCommentReactionsArgs, IssueCommentUserContentEditsArgs, IssueCommentsArgs, IssueConnection, IssueContributionsByRepository, IssueContributionsByRepositoryContributionsArgs, IssueEdge, IssueFilters, IssueHovercardArgs, IssueLabelsArgs, IssueLinkedBranchesArgs, IssueOrPullRequest, IssueOrder, IssueOrderField, IssueParticipantsArgs, IssueProjectCardsArgs, IssueProjectItemsArgs, IssueProjectV2Args, IssueProjectsV2Args, IssueReactionsArgs, IssueState, IssueStateReason, IssueTemplate, IssueTemplateAssigneesArgs, IssueTemplateLabelsArgs, IssueTimelineArgs, IssueTimelineConnection, IssueTimelineItem, IssueTimelineItemEdge, IssueTimelineItems, IssueTimelineItemsArgs, IssueTimelineItemsConnection, IssueTimelineItemsEdge, IssueTimelineItemsItemType, IssueTrackedInIssuesArgs, IssueTrackedIssuesArgs, IssueTrackedIssuesCountArgs, IssueUserContentEditsArgs, JoinedGitHubContribution, Label, LabelConnection, LabelEdge, LabelIssuesArgs, LabelOrder, LabelOrderField, LabelPullRequestsArgs, Labelable, LabelableLabelsArgs, LabeledEvent, Language, LanguageConnection, LanguageEdge, LanguageOrder, LanguageOrderField, License, LicenseRule, LinkProjectV2ToRepositoryInput, LinkProjectV2ToRepositoryPayload, LinkProjectV2ToTeamInput, LinkProjectV2ToTeamPayload, LinkRepositoryToProjectInput, LinkRepositoryToProjectPayload, LinkedBranch, LinkedBranchConnection, LinkedBranchEdge, LockLockableInput, LockLockablePayload, LockReason, Lockable, LockedEvent, MakeEmpty, MakeMaybe, MakeOptional, Mannequin, MannequinAvatarUrlArgs, MannequinConnection, MannequinEdge, MannequinOrder, MannequinOrderField, MarkDiscussionCommentAsAnswerInput, MarkDiscussionCommentAsAnswerPayload, MarkFileAsViewedInput, MarkFileAsViewedPayload, MarkNotificationAsDoneInput, MarkNotificationAsDonePayload, MarkProjectV2AsTemplateInput, MarkProjectV2AsTemplatePayload, MarkPullRequestReadyForReviewInput, MarkPullRequestReadyForReviewPayload, MarkedAsDuplicateEvent, MarketplaceCategory, MarketplaceListing, MarketplaceListingConnection, MarketplaceListingEdge, MarketplaceListingLogoUrlArgs, MaxFilePathLengthParameters, MaxFilePathLengthParametersInput, MaxFileSizeParameters, MaxFileSizeParametersInput, Maybe, MemberFeatureRequestNotification, MemberStatusable, MemberStatusableMemberStatusesArgs, MembersCanDeleteReposClearAuditEntry, MembersCanDeleteReposDisableAuditEntry, MembersCanDeleteReposEnableAuditEntry, MentionedEvent, MergeBranchInput, MergeBranchPayload, MergeCommitMessage, MergeCommitTitle, MergePullRequestInput, MergePullRequestPayload, MergeQueue, MergeQueueConfiguration, MergeQueueEntriesArgs, MergeQueueEntry, MergeQueueEntryConnection, MergeQueueEntryEdge, MergeQueueEntryState, MergeQueueMergingStrategy, MergeStateStatus, MergeableState, MergedEvent, Migration, MigrationSource, MigrationSourceType, MigrationState, Milestone, MilestoneConnection, MilestoneEdge, MilestoneIssuesArgs, MilestoneItem, MilestoneOrder, MilestoneOrderField, MilestonePullRequestsArgs, MilestoneState, MilestonedEvent, Minimizable, MinimizeCommentInput, MinimizeCommentPayload, MoveProjectCardInput, MoveProjectCardPayload, MoveProjectColumnInput, MoveProjectColumnPayload, MovedColumnsInProjectEvent, Mutation, MutationAbortQueuedMigrationsArgs, MutationAbortRepositoryMigrationArgs, MutationAcceptEnterpriseAdministratorInvitationArgs, MutationAcceptTopicSuggestionArgs, MutationAddAssigneesToAssignableArgs, MutationAddCommentArgs, MutationAddDiscussionCommentArgs, MutationAddDiscussionPollVoteArgs, MutationAddEnterpriseOrganizationMemberArgs, MutationAddEnterpriseSupportEntitlementArgs, MutationAddLabelsToLabelableArgs, MutationAddProjectCardArgs, MutationAddProjectColumnArgs, MutationAddProjectV2DraftIssueArgs, MutationAddProjectV2ItemByIdArgs, MutationAddPullRequestReviewArgs, MutationAddPullRequestReviewCommentArgs, MutationAddPullRequestReviewThreadArgs, MutationAddPullRequestReviewThreadReplyArgs, MutationAddReactionArgs, MutationAddStarArgs, MutationAddUpvoteArgs, MutationAddVerifiableDomainArgs, MutationApproveDeploymentsArgs, MutationApproveVerifiableDomainArgs, MutationArchiveProjectV2ItemArgs, MutationArchiveRepositoryArgs, MutationCancelEnterpriseAdminInvitationArgs, MutationCancelSponsorshipArgs, MutationChangeUserStatusArgs, MutationClearLabelsFromLabelableArgs, MutationClearProjectV2ItemFieldValueArgs, MutationCloneProjectArgs, MutationCloneTemplateRepositoryArgs, MutationCloseDiscussionArgs, MutationCloseIssueArgs, MutationClosePullRequestArgs, MutationConvertProjectCardNoteToIssueArgs, MutationConvertPullRequestToDraftArgs, MutationCopyProjectV2Args, MutationCreateAttributionInvitationArgs, MutationCreateBranchProtectionRuleArgs, MutationCreateCheckRunArgs, MutationCreateCheckSuiteArgs, MutationCreateCommitOnBranchArgs, MutationCreateDeploymentArgs, MutationCreateDeploymentStatusArgs, MutationCreateDiscussionArgs, MutationCreateEnterpriseOrganizationArgs, MutationCreateEnvironmentArgs, MutationCreateIpAllowListEntryArgs, MutationCreateIssueArgs, MutationCreateLabelArgs, MutationCreateLinkedBranchArgs, MutationCreateMigrationSourceArgs, MutationCreateProjectArgs, MutationCreateProjectV2Args, MutationCreateProjectV2FieldArgs, MutationCreatePullRequestArgs, MutationCreateRefArgs, MutationCreateRepositoryArgs, MutationCreateRepositoryRulesetArgs, MutationCreateSponsorsListingArgs, MutationCreateSponsorsTierArgs, MutationCreateSponsorshipArgs, MutationCreateSponsorshipsArgs, MutationCreateTeamDiscussionArgs, MutationCreateTeamDiscussionCommentArgs, MutationCreateUserListArgs, MutationDeclineTopicSuggestionArgs, MutationDeleteBranchProtectionRuleArgs, MutationDeleteDeploymentArgs, MutationDeleteDiscussionArgs, MutationDeleteDiscussionCommentArgs, MutationDeleteEnvironmentArgs, MutationDeleteIpAllowListEntryArgs, MutationDeleteIssueArgs, MutationDeleteIssueCommentArgs, MutationDeleteLabelArgs, MutationDeleteLinkedBranchArgs, MutationDeletePackageVersionArgs, MutationDeleteProjectArgs, MutationDeleteProjectCardArgs, MutationDeleteProjectColumnArgs, MutationDeleteProjectV2Args, MutationDeleteProjectV2FieldArgs, MutationDeleteProjectV2ItemArgs, MutationDeleteProjectV2WorkflowArgs, MutationDeletePullRequestReviewArgs, MutationDeletePullRequestReviewCommentArgs, MutationDeleteRefArgs, MutationDeleteRepositoryRulesetArgs, MutationDeleteTeamDiscussionArgs, MutationDeleteTeamDiscussionCommentArgs, MutationDeleteUserListArgs, MutationDeleteVerifiableDomainArgs, MutationDequeuePullRequestArgs, MutationDisablePullRequestAutoMergeArgs, MutationDismissPullRequestReviewArgs, MutationDismissRepositoryVulnerabilityAlertArgs, MutationEnablePullRequestAutoMergeArgs, MutationEnqueuePullRequestArgs, MutationFollowOrganizationArgs, MutationFollowUserArgs, MutationGrantEnterpriseOrganizationsMigratorRoleArgs, MutationGrantMigratorRoleArgs, MutationImportProjectArgs, MutationInviteEnterpriseAdminArgs, MutationLinkProjectV2ToRepositoryArgs, MutationLinkProjectV2ToTeamArgs, MutationLinkRepositoryToProjectArgs, MutationLockLockableArgs, MutationMarkDiscussionCommentAsAnswerArgs, MutationMarkFileAsViewedArgs, MutationMarkNotificationAsDoneArgs, MutationMarkProjectV2AsTemplateArgs, MutationMarkPullRequestReadyForReviewArgs, MutationMergeBranchArgs, MutationMergePullRequestArgs, MutationMinimizeCommentArgs, MutationMoveProjectCardArgs, MutationMoveProjectColumnArgs, MutationPinIssueArgs, MutationPublishSponsorsTierArgs, MutationRegenerateEnterpriseIdentityProviderRecoveryCodesArgs, MutationRegenerateVerifiableDomainTokenArgs, MutationRejectDeploymentsArgs, MutationRemoveAssigneesFromAssignableArgs, MutationRemoveEnterpriseAdminArgs, MutationRemoveEnterpriseIdentityProviderArgs, MutationRemoveEnterpriseMemberArgs, MutationRemoveEnterpriseOrganizationArgs, MutationRemoveEnterpriseSupportEntitlementArgs, MutationRemoveLabelsFromLabelableArgs, MutationRemoveOutsideCollaboratorArgs, MutationRemoveReactionArgs, MutationRemoveStarArgs, MutationRemoveUpvoteArgs, MutationReopenDiscussionArgs, MutationReopenIssueArgs, MutationReopenPullRequestArgs, MutationRequestReviewsArgs, MutationRerequestCheckSuiteArgs, MutationResolveReviewThreadArgs, MutationRetireSponsorsTierArgs, MutationRevertPullRequestArgs, MutationRevokeEnterpriseOrganizationsMigratorRoleArgs, MutationRevokeMigratorRoleArgs, MutationSetEnterpriseIdentityProviderArgs, MutationSetOrganizationInteractionLimitArgs, MutationSetRepositoryInteractionLimitArgs, MutationSetUserInteractionLimitArgs, MutationStartOrganizationMigrationArgs, MutationStartRepositoryMigrationArgs, MutationSubmitPullRequestReviewArgs, MutationTransferEnterpriseOrganizationArgs, MutationTransferIssueArgs, MutationUnarchiveProjectV2ItemArgs, MutationUnarchiveRepositoryArgs, MutationUnfollowOrganizationArgs, MutationUnfollowUserArgs, MutationUnlinkProjectV2FromRepositoryArgs, MutationUnlinkProjectV2FromTeamArgs, MutationUnlinkRepositoryFromProjectArgs, MutationUnlockLockableArgs, MutationUnmarkDiscussionCommentAsAnswerArgs, MutationUnmarkFileAsViewedArgs, MutationUnmarkIssueAsDuplicateArgs, MutationUnmarkProjectV2AsTemplateArgs, MutationUnminimizeCommentArgs, MutationUnpinIssueArgs, MutationUnresolveReviewThreadArgs, MutationUnsubscribeFromNotificationsArgs, MutationUpdateBranchProtectionRuleArgs, MutationUpdateCheckRunArgs, MutationUpdateCheckSuitePreferencesArgs, MutationUpdateDiscussionArgs, MutationUpdateDiscussionCommentArgs, MutationUpdateEnterpriseAdministratorRoleArgs, MutationUpdateEnterpriseAllowPrivateRepositoryForkingSettingArgs, MutationUpdateEnterpriseDefaultRepositoryPermissionSettingArgs, MutationUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingArgs, MutationUpdateEnterpriseMembersCanCreateRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteIssuesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanInviteCollaboratorsSettingArgs, MutationUpdateEnterpriseMembersCanMakePurchasesSettingArgs, MutationUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingArgs, MutationUpdateEnterpriseMembersCanViewDependencyInsightsSettingArgs, MutationUpdateEnterpriseOrganizationProjectsSettingArgs, MutationUpdateEnterpriseOwnerOrganizationRoleArgs, MutationUpdateEnterpriseProfileArgs, MutationUpdateEnterpriseRepositoryProjectsSettingArgs, MutationUpdateEnterpriseTeamDiscussionsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationRequiredSettingArgs, MutationUpdateEnvironmentArgs, MutationUpdateIpAllowListEnabledSettingArgs, MutationUpdateIpAllowListEntryArgs, MutationUpdateIpAllowListForInstalledAppsEnabledSettingArgs, MutationUpdateIssueArgs, MutationUpdateIssueCommentArgs, MutationUpdateLabelArgs, MutationUpdateNotificationRestrictionSettingArgs, MutationUpdateOrganizationAllowPrivateRepositoryForkingSettingArgs, MutationUpdateOrganizationWebCommitSignoffSettingArgs, MutationUpdatePatreonSponsorabilityArgs, MutationUpdateProjectArgs, MutationUpdateProjectCardArgs, MutationUpdateProjectColumnArgs, MutationUpdateProjectV2Args, MutationUpdateProjectV2CollaboratorsArgs, MutationUpdateProjectV2DraftIssueArgs, MutationUpdateProjectV2ItemFieldValueArgs, MutationUpdateProjectV2ItemPositionArgs, MutationUpdatePullRequestArgs, MutationUpdatePullRequestBranchArgs, MutationUpdatePullRequestReviewArgs, MutationUpdatePullRequestReviewCommentArgs, MutationUpdateRefArgs, MutationUpdateRefsArgs, MutationUpdateRepositoryArgs, MutationUpdateRepositoryRulesetArgs, MutationUpdateRepositoryWebCommitSignoffSettingArgs, MutationUpdateSponsorshipPreferencesArgs, MutationUpdateSubscriptionArgs, MutationUpdateTeamDiscussionArgs, MutationUpdateTeamDiscussionCommentArgs, MutationUpdateTeamReviewAssignmentArgs, MutationUpdateTeamsRepositoryArgs, MutationUpdateTopicsArgs, MutationUpdateUserListArgs, MutationUpdateUserListsForItemArgs, MutationVerifyVerifiableDomainArgs, Node, NotificationRestrictionSettingValue, OauthApplicationAuditEntryData, OauthApplicationCreateAuditEntry, OauthApplicationCreateAuditEntryState, OidcProvider, OidcProviderExternalIdentitiesArgs, OidcProviderType, OperationType, OrderDirection, OrgAddBillingManagerAuditEntry, OrgAddMemberAuditEntry, OrgAddMemberAuditEntryPermission, OrgBlockUserAuditEntry, OrgConfigDisableCollaboratorsOnlyAuditEntry, OrgConfigEnableCollaboratorsOnlyAuditEntry, OrgCreateAuditEntry, OrgCreateAuditEntryBillingPlan, OrgDisableOauthAppRestrictionsAuditEntry, OrgDisableSamlAuditEntry, OrgDisableTwoFactorRequirementAuditEntry, OrgEnableOauthAppRestrictionsAuditEntry, OrgEnableSamlAuditEntry, OrgEnableTwoFactorRequirementAuditEntry, OrgEnterpriseOwnerOrder, OrgEnterpriseOwnerOrderField, OrgInviteMemberAuditEntry, OrgInviteToBusinessAuditEntry, OrgOauthAppAccessApprovedAuditEntry, OrgOauthAppAccessBlockedAuditEntry, OrgOauthAppAccessDeniedAuditEntry, OrgOauthAppAccessRequestedAuditEntry, OrgOauthAppAccessUnblockedAuditEntry, OrgRemoveBillingManagerAuditEntry, OrgRemoveBillingManagerAuditEntryReason, OrgRemoveMemberAuditEntry, OrgRemoveMemberAuditEntryMembershipType, OrgRemoveMemberAuditEntryReason, OrgRemoveOutsideCollaboratorAuditEntry, OrgRemoveOutsideCollaboratorAuditEntryMembershipType, OrgRemoveOutsideCollaboratorAuditEntryReason, OrgRestoreMemberAuditEntry, OrgRestoreMemberAuditEntryMembership, OrgRestoreMemberMembershipOrganizationAuditEntryData, OrgRestoreMemberMembershipRepositoryAuditEntryData, OrgRestoreMemberMembershipTeamAuditEntryData, OrgUnblockUserAuditEntry, OrgUpdateDefaultRepositoryPermissionAuditEntry, OrgUpdateDefaultRepositoryPermissionAuditEntryPermission, OrgUpdateMemberAuditEntry, OrgUpdateMemberAuditEntryPermission, OrgUpdateMemberRepositoryCreationPermissionAuditEntry, OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility, OrgUpdateMemberRepositoryInvitationPermissionAuditEntry, Organization, OrganizationAnyPinnableItemsArgs, OrganizationAuditEntry, OrganizationAuditEntryConnection, OrganizationAuditEntryData, OrganizationAuditEntryEdge, OrganizationAuditLogArgs, OrganizationAvatarUrlArgs, OrganizationConnection, OrganizationDomainsArgs, OrganizationEdge, OrganizationEnterpriseOwnerConnection, OrganizationEnterpriseOwnerEdge, OrganizationEnterpriseOwnersArgs, OrganizationIdentityProvider, OrganizationIdentityProviderExternalIdentitiesArgs, OrganizationInvitation, OrganizationInvitationConnection, OrganizationInvitationEdge, OrganizationInvitationRole, OrganizationInvitationSource, OrganizationInvitationType, OrganizationIpAllowListEntriesArgs, OrganizationIsSponsoredByArgs, OrganizationLifetimeReceivedSponsorshipValuesArgs, OrganizationMannequinsArgs, OrganizationMemberConnection, OrganizationMemberEdge, OrganizationMemberRole, OrganizationMemberStatusesArgs, OrganizationMembersCanCreateRepositoriesSettingValue, OrganizationMembersWithRoleArgs, OrganizationMigration, OrganizationMigrationState, OrganizationOrUser, OrganizationOrder, OrganizationOrderField, OrganizationPackagesArgs, OrganizationPendingMembersArgs, OrganizationPinnableItemsArgs, OrganizationPinnedItemsArgs, OrganizationProjectArgs, OrganizationProjectV2Args, OrganizationProjectsArgs, OrganizationProjectsV2Args, OrganizationRecentProjectsArgs, OrganizationRepositoriesArgs, OrganizationRepositoryArgs, OrganizationRepositoryDiscussionCommentsArgs, OrganizationRepositoryDiscussionsArgs, OrganizationRepositoryMigrationsArgs, OrganizationRulesetArgs, OrganizationRulesetsArgs, OrganizationSponsoringArgs, OrganizationSponsorsActivitiesArgs, OrganizationSponsorsArgs, OrganizationSponsorshipForViewerAsSponsorArgs, OrganizationSponsorshipForViewerAsSponsorableArgs, OrganizationSponsorshipNewslettersArgs, OrganizationSponsorshipsAsMaintainerArgs, OrganizationSponsorshipsAsSponsorArgs, OrganizationTeamArgs, OrganizationTeamsArgs, OrganizationTeamsHovercardContext, OrganizationTeamsHovercardContextRelevantTeamsArgs, OrganizationTotalSponsorshipAmountAsSponsorInCentsArgs, OrganizationsHovercardContext, OrganizationsHovercardContextRelevantOrganizationsArgs, Package, PackageConnection, PackageEdge, PackageFile, PackageFileConnection, PackageFileEdge, PackageFileOrder, PackageFileOrderField, PackageOrder, PackageOrderField, PackageOwner, PackageOwnerPackagesArgs, PackageStatistics, PackageTag, PackageType, PackageVersion, PackageVersionArgs, PackageVersionConnection, PackageVersionEdge, PackageVersionFilesArgs, PackageVersionOrder, PackageVersionOrderField, PackageVersionStatistics, PackageVersionsArgs, PageInfo, PatchStatus, PermissionGranter, PermissionSource, PinIssueInput, PinIssuePayload, PinnableItem, PinnableItemConnection, PinnableItemEdge, PinnableItemType, PinnedDiscussion, PinnedDiscussionConnection, PinnedDiscussionEdge, PinnedDiscussionGradient, PinnedDiscussionPattern, PinnedEvent, PinnedIssue, PinnedIssueConnection, PinnedIssueEdge, PrivateRepositoryForkingDisableAuditEntry, PrivateRepositoryForkingEnableAuditEntry, ProfileItemShowcase, ProfileItemShowcaseItemsArgs, ProfileOwner, ProfileOwnerAnyPinnableItemsArgs, ProfileOwnerPinnableItemsArgs, ProfileOwnerPinnedItemsArgs, Project, ProjectCard, ProjectCardArchivedState, ProjectCardConnection, ProjectCardEdge, ProjectCardImport, ProjectCardItem, ProjectCardState, ProjectColumn, ProjectColumnCardsArgs, ProjectColumnConnection, ProjectColumnEdge, ProjectColumnImport, ProjectColumnPurpose, ProjectColumnsArgs, ProjectConnection, ProjectEdge, ProjectOrder, ProjectOrderField, ProjectOwner, ProjectOwnerProjectArgs, ProjectOwnerProjectsArgs, ProjectPendingCardsArgs, ProjectProgress, ProjectState, ProjectTemplate, ProjectV2, ProjectV2Actor, ProjectV2ActorConnection, ProjectV2ActorEdge, ProjectV2Collaborator, ProjectV2Connection, ProjectV2CustomFieldType, ProjectV2Edge, ProjectV2Field, ProjectV2FieldArgs, ProjectV2FieldCommon, ProjectV2FieldConfiguration, ProjectV2FieldConfigurationConnection, ProjectV2FieldConfigurationEdge, ProjectV2FieldConnection, ProjectV2FieldEdge, ProjectV2FieldOrder, ProjectV2FieldOrderField, ProjectV2FieldType, ProjectV2FieldValue, ProjectV2FieldsArgs, ProjectV2Filters, ProjectV2Item, ProjectV2ItemConnection, ProjectV2ItemContent, ProjectV2ItemEdge, ProjectV2ItemFieldDateValue, ProjectV2ItemFieldIterationValue, ProjectV2ItemFieldLabelValue, ProjectV2ItemFieldLabelValueLabelsArgs, ProjectV2ItemFieldMilestoneValue, ProjectV2ItemFieldNumberValue, ProjectV2ItemFieldPullRequestValue, ProjectV2ItemFieldPullRequestValuePullRequestsArgs, ProjectV2ItemFieldRepositoryValue, ProjectV2ItemFieldReviewerValue, ProjectV2ItemFieldReviewerValueReviewersArgs, ProjectV2ItemFieldSingleSelectValue, ProjectV2ItemFieldTextValue, ProjectV2ItemFieldUserValue, ProjectV2ItemFieldUserValueUsersArgs, ProjectV2ItemFieldValue, ProjectV2ItemFieldValueByNameArgs, ProjectV2ItemFieldValueCommon, ProjectV2ItemFieldValueConnection, ProjectV2ItemFieldValueEdge, ProjectV2ItemFieldValueOrder, ProjectV2ItemFieldValueOrderField, ProjectV2ItemFieldValuesArgs, ProjectV2ItemOrder, ProjectV2ItemOrderField, ProjectV2ItemType, ProjectV2ItemsArgs, ProjectV2IterationField, ProjectV2IterationFieldConfiguration, ProjectV2IterationFieldIteration, ProjectV2Order, ProjectV2OrderField, ProjectV2Owner, ProjectV2OwnerProjectV2Args, ProjectV2OwnerProjectsV2Args, ProjectV2Recent, ProjectV2RecentRecentProjectsArgs, ProjectV2RepositoriesArgs, ProjectV2Roles, ProjectV2SingleSelectField, ProjectV2SingleSelectFieldOption, ProjectV2SingleSelectFieldOptionColor, ProjectV2SingleSelectFieldOptionInput, ProjectV2SingleSelectFieldOptionsArgs, ProjectV2SortBy, ProjectV2SortByConnection, ProjectV2SortByEdge, ProjectV2SortByField, ProjectV2SortByFieldConnection, ProjectV2SortByFieldEdge, ProjectV2State, ProjectV2TeamsArgs, ProjectV2View, ProjectV2ViewArgs, ProjectV2ViewConnection, ProjectV2ViewEdge, ProjectV2ViewFieldsArgs, ProjectV2ViewGroupByArgs, ProjectV2ViewGroupByFieldsArgs, ProjectV2ViewLayout, ProjectV2ViewOrder, ProjectV2ViewOrderField, ProjectV2ViewSortByArgs, ProjectV2ViewSortByFieldsArgs, ProjectV2ViewVerticalGroupByArgs, ProjectV2ViewVerticalGroupByFieldsArgs, ProjectV2ViewVisibleFieldsArgs, ProjectV2ViewsArgs, ProjectV2Workflow, ProjectV2WorkflowArgs, ProjectV2WorkflowConnection, ProjectV2WorkflowEdge, ProjectV2WorkflowOrder, ProjectV2WorkflowsArgs, ProjectV2WorkflowsOrderField, PropertyTargetDefinition, PropertyTargetDefinitionInput, PublicKey, PublicKeyConnection, PublicKeyEdge, PublishSponsorsTierInput, PublishSponsorsTierPayload, PullRequest, PullRequestAssigneesArgs, PullRequestBranchUpdateMethod, PullRequestChangedFile, PullRequestChangedFileConnection, PullRequestChangedFileEdge, PullRequestClosingIssuesReferencesArgs, PullRequestCommentsArgs, PullRequestCommit, PullRequestCommitCommentThread, PullRequestCommitCommentThreadCommentsArgs, PullRequestCommitConnection, PullRequestCommitEdge, PullRequestCommitsArgs, PullRequestConnection, PullRequestContributionsByRepository, PullRequestContributionsByRepositoryContributionsArgs, PullRequestEdge, PullRequestFilesArgs, PullRequestHovercardArgs, PullRequestLabelsArgs, PullRequestLatestOpinionatedReviewsArgs, PullRequestLatestReviewsArgs, PullRequestMergeMethod, PullRequestOrder, PullRequestOrderField, PullRequestParameters, PullRequestParametersInput, PullRequestParticipantsArgs, PullRequestProjectCardsArgs, PullRequestProjectItemsArgs, PullRequestProjectV2Args, PullRequestProjectsV2Args, PullRequestReactionsArgs, PullRequestReview, PullRequestReviewComment, PullRequestReviewCommentConnection, PullRequestReviewCommentEdge, PullRequestReviewCommentReactionsArgs, PullRequestReviewCommentState, PullRequestReviewCommentUserContentEditsArgs, PullRequestReviewCommentsArgs, PullRequestReviewConnection, PullRequestReviewContributionsByRepository, PullRequestReviewContributionsByRepositoryContributionsArgs, PullRequestReviewDecision, PullRequestReviewEdge, PullRequestReviewEvent, PullRequestReviewOnBehalfOfArgs, PullRequestReviewReactionsArgs, PullRequestReviewRequestsArgs, PullRequestReviewState, PullRequestReviewThread, PullRequestReviewThreadCommentsArgs, PullRequestReviewThreadConnection, PullRequestReviewThreadEdge, PullRequestReviewThreadSubjectType, PullRequestReviewThreadsArgs, PullRequestReviewUserContentEditsArgs, PullRequestReviewsArgs, PullRequestRevisionMarker, PullRequestState, PullRequestTemplate, PullRequestThread, PullRequestThreadCommentsArgs, PullRequestTimelineArgs, PullRequestTimelineConnection, PullRequestTimelineItem, PullRequestTimelineItemEdge, PullRequestTimelineItems, PullRequestTimelineItemsArgs, PullRequestTimelineItemsConnection, PullRequestTimelineItemsEdge, PullRequestTimelineItemsItemType, PullRequestUpdateState, PullRequestUserContentEditsArgs, PullRequestViewerMergeBodyTextArgs, PullRequestViewerMergeHeadlineTextArgs, Push, PushAllowance, PushAllowanceActor, PushAllowanceConnection, PushAllowanceEdge, Query, QueryCodeOfConductArgs, QueryEnterpriseAdministratorInvitationArgs, QueryEnterpriseAdministratorInvitationByTokenArgs, QueryEnterpriseArgs, QueryLicenseArgs, QueryMarketplaceCategoriesArgs, QueryMarketplaceCategoryArgs, QueryMarketplaceListingArgs, QueryMarketplaceListingsArgs, QueryNodeArgs, QueryNodesArgs, QueryOrganizationArgs, QueryRateLimitArgs, QueryRepositoryArgs, QueryRepositoryOwnerArgs, QueryResourceArgs, QuerySearchArgs, QuerySecurityAdvisoriesArgs, QuerySecurityAdvisoryArgs, QuerySecurityVulnerabilitiesArgs, QuerySponsorablesArgs, QueryTopicArgs, QueryUserArgs, RateLimit, Reactable, ReactableReactionsArgs, ReactingUserConnection, ReactingUserEdge, Reaction, ReactionConnection, ReactionContent, ReactionEdge, ReactionGroup, ReactionGroupReactorsArgs, ReactionGroupUsersArgs, ReactionOrder, ReactionOrderField, Reactor, ReactorConnection, ReactorEdge, ReadyForReviewEvent, Ref, RefAssociatedPullRequestsArgs, RefCompareArgs, RefConnection, RefEdge, RefNameConditionTarget, RefNameConditionTargetInput, RefOrder, RefOrderField, RefRulesArgs, RefUpdate, RefUpdateRule, ReferencedEvent, ReferencedSubject, RegenerateEnterpriseIdentityProviderRecoveryCodesInput, RegenerateEnterpriseIdentityProviderRecoveryCodesPayload, RegenerateVerifiableDomainTokenInput, RegenerateVerifiableDomainTokenPayload, RejectDeploymentsInput, RejectDeploymentsPayload, Release, ReleaseAsset, ReleaseAssetConnection, ReleaseAssetEdge, ReleaseConnection, ReleaseEdge, ReleaseMentionsArgs, ReleaseOrder, ReleaseOrderField, ReleaseReactionsArgs, ReleaseReleaseAssetsArgs, ReleaseShortDescriptionHtmlArgs, RemoveAssigneesFromAssignableInput, RemoveAssigneesFromAssignablePayload, RemoveEnterpriseAdminInput, RemoveEnterpriseAdminPayload, RemoveEnterpriseIdentityProviderInput, RemoveEnterpriseIdentityProviderPayload, RemoveEnterpriseMemberInput, RemoveEnterpriseMemberPayload, RemoveEnterpriseOrganizationInput, RemoveEnterpriseOrganizationPayload, RemoveEnterpriseSupportEntitlementInput, RemoveEnterpriseSupportEntitlementPayload, RemoveLabelsFromLabelableInput, RemoveLabelsFromLabelablePayload, RemoveOutsideCollaboratorInput, RemoveOutsideCollaboratorPayload, RemoveReactionInput, RemoveReactionPayload, RemoveStarInput, RemoveStarPayload, RemoveUpvoteInput, RemoveUpvotePayload, RemovedFromMergeQueueEvent, RemovedFromProjectEvent, RenamedTitleEvent, RenamedTitleSubject, ReopenDiscussionInput, ReopenDiscussionPayload, ReopenIssueInput, ReopenIssuePayload, ReopenPullRequestInput, ReopenPullRequestPayload, ReopenedEvent, RepoAccessAuditEntry, RepoAccessAuditEntryVisibility, RepoAddMemberAuditEntry, RepoAddMemberAuditEntryVisibility, RepoAddTopicAuditEntry, RepoArchivedAuditEntry, RepoArchivedAuditEntryVisibility, RepoChangeMergeSettingAuditEntry, RepoChangeMergeSettingAuditEntryMergeType, RepoConfigDisableAnonymousGitAccessAuditEntry, RepoConfigDisableCollaboratorsOnlyAuditEntry, RepoConfigDisableContributorsOnlyAuditEntry, RepoConfigDisableSockpuppetDisallowedAuditEntry, RepoConfigEnableAnonymousGitAccessAuditEntry, RepoConfigEnableCollaboratorsOnlyAuditEntry, RepoConfigEnableContributorsOnlyAuditEntry, RepoConfigEnableSockpuppetDisallowedAuditEntry, RepoConfigLockAnonymousGitAccessAuditEntry, RepoConfigUnlockAnonymousGitAccessAuditEntry, RepoCreateAuditEntry, RepoCreateAuditEntryVisibility, RepoDestroyAuditEntry, RepoDestroyAuditEntryVisibility, RepoRemoveMemberAuditEntry, RepoRemoveMemberAuditEntryVisibility, RepoRemoveTopicAuditEntry, ReportedContentClassifiers, Repository, RepositoryAffiliation, RepositoryAssignableUsersArgs, RepositoryAuditEntryData, RepositoryBranchProtectionRulesArgs, RepositoryCodeowners, RepositoryCodeownersArgs, RepositoryCodeownersError, RepositoryCollaboratorConnection, RepositoryCollaboratorEdge, RepositoryCollaboratorsArgs, RepositoryCommitCommentsArgs, RepositoryConnection, RepositoryContactLink, RepositoryContributionType, RepositoryDependencyGraphManifestsArgs, RepositoryDeployKeysArgs, RepositoryDeploymentsArgs, RepositoryDiscussionArgs, RepositoryDiscussionAuthor, RepositoryDiscussionAuthorRepositoryDiscussionsArgs, RepositoryDiscussionCategoriesArgs, RepositoryDiscussionCategoryArgs, RepositoryDiscussionCommentAuthor, RepositoryDiscussionCommentAuthorRepositoryDiscussionCommentsArgs, RepositoryDiscussionsArgs, RepositoryEdge, RepositoryEnvironmentArgs, RepositoryEnvironmentsArgs, RepositoryForksArgs, RepositoryIdConditionTarget, RepositoryIdConditionTargetInput, RepositoryInfo, RepositoryInfoShortDescriptionHtmlArgs, RepositoryInteractionAbility, RepositoryInteractionLimit, RepositoryInteractionLimitExpiry, RepositoryInteractionLimitOrigin, RepositoryInvitation, RepositoryInvitationConnection, RepositoryInvitationEdge, RepositoryInvitationOrder, RepositoryInvitationOrderField, RepositoryIssueArgs, RepositoryIssueOrPullRequestArgs, RepositoryIssuesArgs, RepositoryLabelArgs, RepositoryLabelsArgs, RepositoryLanguagesArgs, RepositoryLockReason, RepositoryMentionableUsersArgs, RepositoryMergeQueueArgs, RepositoryMigration, RepositoryMigrationConnection, RepositoryMigrationEdge, RepositoryMigrationOrder, RepositoryMigrationOrderDirection, RepositoryMigrationOrderField, RepositoryMilestoneArgs, RepositoryMilestonesArgs, RepositoryNameConditionTarget, RepositoryNameConditionTargetInput, RepositoryNode, RepositoryObjectArgs, RepositoryOrder, RepositoryOrderField, RepositoryOwner, RepositoryOwnerAvatarUrlArgs, RepositoryOwnerRepositoriesArgs, RepositoryOwnerRepositoryArgs, RepositoryPackagesArgs, RepositoryPermission, RepositoryPinnedDiscussionsArgs, RepositoryPinnedIssuesArgs, RepositoryPlanFeatures, RepositoryPrivacy, RepositoryProjectArgs, RepositoryProjectV2Args, RepositoryProjectsArgs, RepositoryProjectsV2Args, RepositoryPropertyConditionTarget, RepositoryPropertyConditionTargetInput, RepositoryPullRequestArgs, RepositoryPullRequestsArgs, RepositoryRecentProjectsArgs, RepositoryRefArgs, RepositoryRefsArgs, RepositoryReleaseArgs, RepositoryReleasesArgs, RepositoryRepositoryTopicsArgs, RepositoryRule, RepositoryRuleConditions, RepositoryRuleConditionsInput, RepositoryRuleConnection, RepositoryRuleEdge, RepositoryRuleInput, RepositoryRuleOrder, RepositoryRuleOrderField, RepositoryRuleType, RepositoryRuleset, RepositoryRulesetArgs, RepositoryRulesetBypassActor, RepositoryRulesetBypassActorBypassMode, RepositoryRulesetBypassActorConnection, RepositoryRulesetBypassActorEdge, RepositoryRulesetBypassActorInput, RepositoryRulesetBypassActorsArgs, RepositoryRulesetConnection, RepositoryRulesetEdge, RepositoryRulesetRulesArgs, RepositoryRulesetTarget, RepositoryRulesetsArgs, RepositoryShortDescriptionHtmlArgs, RepositoryStargazersArgs, RepositorySubmodulesArgs, RepositoryTopic, RepositoryTopicConnection, RepositoryTopicEdge, RepositoryVisibility, RepositoryVisibilityChangeDisableAuditEntry, RepositoryVisibilityChangeEnableAuditEntry, RepositoryVulnerabilityAlert, RepositoryVulnerabilityAlertArgs, RepositoryVulnerabilityAlertConnection, RepositoryVulnerabilityAlertDependencyScope, RepositoryVulnerabilityAlertEdge, RepositoryVulnerabilityAlertState, RepositoryVulnerabilityAlertsArgs, RepositoryWatchersArgs, RequestReviewsInput, RequestReviewsPayload, RequestableCheckStatusState, RequestedReviewer, RequestedReviewerConnection, RequestedReviewerEdge, RequirableByPullRequest, RequirableByPullRequestIsRequiredArgs, RequiredDeploymentsParameters, RequiredDeploymentsParametersInput, RequiredStatusCheckDescription, RequiredStatusCheckInput, RequiredStatusChecksParameters, RequiredStatusChecksParametersInput, RerequestCheckSuiteInput, RerequestCheckSuitePayload, ResolveReviewThreadInput, ResolveReviewThreadPayload, RestrictedContribution, RetireSponsorsTierInput, RetireSponsorsTierPayload, RevertPullRequestInput, RevertPullRequestPayload, ReviewDismissalAllowance, ReviewDismissalAllowanceActor, ReviewDismissalAllowanceConnection, ReviewDismissalAllowanceEdge, ReviewDismissedEvent, ReviewRequest, ReviewRequestConnection, ReviewRequestEdge, ReviewRequestRemovedEvent, ReviewRequestedEvent, ReviewStatusHovercardContext, RevokeEnterpriseOrganizationsMigratorRoleInput, RevokeEnterpriseOrganizationsMigratorRolePayload, RevokeEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs, RevokeMigratorRoleInput, RevokeMigratorRolePayload, RoleInOrganization, RuleEnforcement, RuleParameters, RuleParametersInput, RuleSource, SamlDigestAlgorithm, SamlSignatureAlgorithm, SavedReply, SavedReplyConnection, SavedReplyEdge, SavedReplyOrder, SavedReplyOrderField, Scalars, SearchResultItem, SearchResultItemConnection, SearchResultItemEdge, SearchType, SecurityAdvisory, SecurityAdvisoryClassification, SecurityAdvisoryConnection, SecurityAdvisoryCwesArgs, SecurityAdvisoryEcosystem, SecurityAdvisoryEdge, SecurityAdvisoryIdentifier, SecurityAdvisoryIdentifierFilter, SecurityAdvisoryIdentifierType, SecurityAdvisoryOrder, SecurityAdvisoryOrderField, SecurityAdvisoryPackage, SecurityAdvisoryPackageVersion, SecurityAdvisoryReference, SecurityAdvisorySeverity, SecurityAdvisoryVulnerabilitiesArgs, SecurityVulnerability, SecurityVulnerabilityConnection, SecurityVulnerabilityEdge, SecurityVulnerabilityOrder, SecurityVulnerabilityOrderField, SetEnterpriseIdentityProviderInput, SetEnterpriseIdentityProviderPayload, SetOrganizationInteractionLimitInput, SetOrganizationInteractionLimitPayload, SetRepositoryInteractionLimitInput, SetRepositoryInteractionLimitPayload, SetUserInteractionLimitInput, SetUserInteractionLimitPayload, SmimeSignature, SocialAccount, SocialAccountConnection, SocialAccountEdge, SocialAccountProvider, Sponsor, SponsorAndLifetimeValue, SponsorAndLifetimeValueConnection, SponsorAndLifetimeValueEdge, SponsorAndLifetimeValueOrder, SponsorAndLifetimeValueOrderField, SponsorConnection, SponsorEdge, SponsorOrder, SponsorOrderField, Sponsorable, SponsorableIsSponsoredByArgs, SponsorableItem, SponsorableItemConnection, SponsorableItemEdge, SponsorableLifetimeReceivedSponsorshipValuesArgs, SponsorableOrder, SponsorableOrderField, SponsorableSponsoringArgs, SponsorableSponsorsActivitiesArgs, SponsorableSponsorsArgs, SponsorableSponsorshipForViewerAsSponsorArgs, SponsorableSponsorshipForViewerAsSponsorableArgs, SponsorableSponsorshipNewslettersArgs, SponsorableSponsorshipsAsMaintainerArgs, SponsorableSponsorshipsAsSponsorArgs, SponsorableTotalSponsorshipAmountAsSponsorInCentsArgs, SponsorsActivity, SponsorsActivityAction, SponsorsActivityConnection, SponsorsActivityEdge, SponsorsActivityOrder, SponsorsActivityOrderField, SponsorsActivityPeriod, SponsorsCountryOrRegionCode, SponsorsGoal, SponsorsGoalKind, SponsorsListing, SponsorsListingFeatureableItem, SponsorsListingFeaturedItem, SponsorsListingFeaturedItemFeatureableType, SponsorsListingFeaturedItemsArgs, SponsorsListingTiersArgs, SponsorsTier, SponsorsTierAdminInfo, SponsorsTierAdminInfoSponsorshipsArgs, SponsorsTierConnection, SponsorsTierEdge, SponsorsTierOrder, SponsorsTierOrderField, Sponsorship, SponsorshipConnection, SponsorshipEdge, SponsorshipNewsletter, SponsorshipNewsletterConnection, SponsorshipNewsletterEdge, SponsorshipNewsletterOrder, SponsorshipNewsletterOrderField, SponsorshipOrder, SponsorshipOrderField, SponsorshipPaymentSource, SponsorshipPrivacy, SquashMergeCommitMessage, SquashMergeCommitTitle, SshSignature, StarOrder, StarOrderField, StargazerConnection, StargazerEdge, Starrable, StarrableStargazersArgs, StarredRepositoryConnection, StarredRepositoryEdge, StartOrganizationMigrationInput, StartOrganizationMigrationPayload, StartRepositoryMigrationInput, StartRepositoryMigrationPayload, Status, StatusCheckConfiguration, StatusCheckConfigurationInput, StatusCheckRollup, StatusCheckRollupContext, StatusCheckRollupContextConnection, StatusCheckRollupContextEdge, StatusCheckRollupContextsArgs, StatusCombinedContextsArgs, StatusContext, StatusContextArgs, StatusContextAvatarUrlArgs, StatusContextIsRequiredArgs, StatusContextStateCount, StatusState, StripeConnectAccount, SubmitPullRequestReviewInput, SubmitPullRequestReviewPayload, Submodule, SubmoduleConnection, SubmoduleEdge, Subscribable, SubscribableThread, SubscribedEvent, SubscriptionState, SuggestedReviewer, Tag, TagNamePatternParameters, TagNamePatternParametersInput, Team, TeamAddMemberAuditEntry, TeamAddRepositoryAuditEntry, TeamAncestorsArgs, TeamAuditEntryData, TeamAvatarUrlArgs, TeamChangeParentTeamAuditEntry, TeamChildTeamsArgs, TeamConnection, TeamDiscussion, TeamDiscussionArgs, TeamDiscussionComment, TeamDiscussionCommentConnection, TeamDiscussionCommentEdge, TeamDiscussionCommentOrder, TeamDiscussionCommentOrderField, TeamDiscussionCommentReactionsArgs, TeamDiscussionCommentUserContentEditsArgs, TeamDiscussionCommentsArgs, TeamDiscussionConnection, TeamDiscussionEdge, TeamDiscussionOrder, TeamDiscussionOrderField, TeamDiscussionReactionsArgs, TeamDiscussionUserContentEditsArgs, TeamDiscussionsArgs, TeamEdge, TeamInvitationsArgs, TeamMemberConnection, TeamMemberEdge, TeamMemberOrder, TeamMemberOrderField, TeamMemberRole, TeamMemberStatusesArgs, TeamMembersArgs, TeamMembershipType, TeamNotificationSetting, TeamOrder, TeamOrderField, TeamPrivacy, TeamProjectV2Args, TeamProjectsV2Args, TeamRemoveMemberAuditEntry, TeamRemoveRepositoryAuditEntry, TeamRepositoriesArgs, TeamRepositoryConnection, TeamRepositoryEdge, TeamRepositoryOrder, TeamRepositoryOrderField, TeamReviewAssignmentAlgorithm, TeamRole, TextMatch, TextMatchHighlight, ThreadSubscriptionFormAction, ThreadSubscriptionState, Topic, TopicAuditEntryData, TopicRelatedTopicsArgs, TopicRepositoriesArgs, TopicStargazersArgs, TopicSuggestionDeclineReason, TrackedIssueStates, TransferEnterpriseOrganizationInput, TransferEnterpriseOrganizationPayload, TransferIssueInput, TransferIssuePayload, TransferredEvent, Tree, TreeEntry, UnarchiveProjectV2ItemInput, UnarchiveProjectV2ItemPayload, UnarchiveRepositoryInput, UnarchiveRepositoryPayload, UnassignedEvent, UnfollowOrganizationInput, UnfollowOrganizationPayload, UnfollowUserInput, UnfollowUserPayload, UniformResourceLocatable, UnknownSignature, UnlabeledEvent, UnlinkProjectV2FromRepositoryInput, UnlinkProjectV2FromRepositoryPayload, UnlinkProjectV2FromTeamInput, UnlinkProjectV2FromTeamPayload, UnlinkRepositoryFromProjectInput, UnlinkRepositoryFromProjectPayload, UnlockLockableInput, UnlockLockablePayload, UnlockedEvent, UnmarkDiscussionCommentAsAnswerInput, UnmarkDiscussionCommentAsAnswerPayload, UnmarkFileAsViewedInput, UnmarkFileAsViewedPayload, UnmarkIssueAsDuplicateInput, UnmarkIssueAsDuplicatePayload, UnmarkProjectV2AsTemplateInput, UnmarkProjectV2AsTemplatePayload, UnmarkedAsDuplicateEvent, UnminimizeCommentInput, UnminimizeCommentPayload, UnpinIssueInput, UnpinIssuePayload, UnpinnedEvent, UnresolveReviewThreadInput, UnresolveReviewThreadPayload, UnsubscribeFromNotificationsInput, UnsubscribeFromNotificationsPayload, UnsubscribedEvent, Updatable, UpdatableComment, UpdateBranchProtectionRuleInput, UpdateBranchProtectionRulePayload, UpdateCheckRunInput, UpdateCheckRunPayload, UpdateCheckSuitePreferencesInput, UpdateCheckSuitePreferencesPayload, UpdateDiscussionCommentInput, UpdateDiscussionCommentPayload, UpdateDiscussionInput, UpdateDiscussionPayload, UpdateEnterpriseAdministratorRoleInput, UpdateEnterpriseAdministratorRolePayload, UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput, UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload, UpdateEnterpriseDefaultRepositoryPermissionSettingInput, UpdateEnterpriseDefaultRepositoryPermissionSettingPayload, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload, UpdateEnterpriseMembersCanCreateRepositoriesSettingInput, UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload, UpdateEnterpriseMembersCanDeleteIssuesSettingInput, UpdateEnterpriseMembersCanDeleteIssuesSettingPayload, UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput, UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload, UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput, UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload, UpdateEnterpriseMembersCanMakePurchasesSettingInput, UpdateEnterpriseMembersCanMakePurchasesSettingPayload, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload, UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput, UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload, UpdateEnterpriseOrganizationProjectsSettingInput, UpdateEnterpriseOrganizationProjectsSettingPayload, UpdateEnterpriseOwnerOrganizationRoleInput, UpdateEnterpriseOwnerOrganizationRolePayload, UpdateEnterpriseProfileInput, UpdateEnterpriseProfilePayload, UpdateEnterpriseRepositoryProjectsSettingInput, UpdateEnterpriseRepositoryProjectsSettingPayload, UpdateEnterpriseTeamDiscussionsSettingInput, UpdateEnterpriseTeamDiscussionsSettingPayload, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload, UpdateEnvironmentInput, UpdateEnvironmentPayload, UpdateIpAllowListEnabledSettingInput, UpdateIpAllowListEnabledSettingPayload, UpdateIpAllowListEntryInput, UpdateIpAllowListEntryPayload, UpdateIpAllowListForInstalledAppsEnabledSettingInput, UpdateIpAllowListForInstalledAppsEnabledSettingPayload, UpdateIssueCommentInput, UpdateIssueCommentPayload, UpdateIssueInput, UpdateIssuePayload, UpdateLabelInput, UpdateLabelPayload, UpdateNotificationRestrictionSettingInput, UpdateNotificationRestrictionSettingPayload, UpdateOrganizationAllowPrivateRepositoryForkingSettingInput, UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload, UpdateOrganizationWebCommitSignoffSettingInput, UpdateOrganizationWebCommitSignoffSettingPayload, UpdateParameters, UpdateParametersInput, UpdatePatreonSponsorabilityInput, UpdatePatreonSponsorabilityPayload, UpdateProjectCardInput, UpdateProjectCardPayload, UpdateProjectColumnInput, UpdateProjectColumnPayload, UpdateProjectInput, UpdateProjectPayload, UpdateProjectV2CollaboratorsInput, UpdateProjectV2CollaboratorsPayload, UpdateProjectV2CollaboratorsPayloadCollaboratorsArgs, UpdateProjectV2DraftIssueInput, UpdateProjectV2DraftIssuePayload, UpdateProjectV2Input, UpdateProjectV2ItemFieldValueInput, UpdateProjectV2ItemFieldValuePayload, UpdateProjectV2ItemPositionInput, UpdateProjectV2ItemPositionPayload, UpdateProjectV2ItemPositionPayloadItemsArgs, UpdateProjectV2Payload, UpdatePullRequestBranchInput, UpdatePullRequestBranchPayload, UpdatePullRequestInput, UpdatePullRequestPayload, UpdatePullRequestReviewCommentInput, UpdatePullRequestReviewCommentPayload, UpdatePullRequestReviewInput, UpdatePullRequestReviewPayload, UpdateRefInput, UpdateRefPayload, UpdateRefsInput, UpdateRefsPayload, UpdateRepositoryInput, UpdateRepositoryPayload, UpdateRepositoryRulesetInput, UpdateRepositoryRulesetPayload, UpdateRepositoryWebCommitSignoffSettingInput, UpdateRepositoryWebCommitSignoffSettingPayload, UpdateSponsorshipPreferencesInput, UpdateSponsorshipPreferencesPayload, UpdateSubscriptionInput, UpdateSubscriptionPayload, UpdateTeamDiscussionCommentInput, UpdateTeamDiscussionCommentPayload, UpdateTeamDiscussionInput, UpdateTeamDiscussionPayload, UpdateTeamReviewAssignmentInput, UpdateTeamReviewAssignmentPayload, UpdateTeamsRepositoryInput, UpdateTeamsRepositoryPayload, UpdateTopicsInput, UpdateTopicsPayload, UpdateUserListInput, UpdateUserListPayload, UpdateUserListsForItemInput, UpdateUserListsForItemPayload, User, UserAnyPinnableItemsArgs, UserAvatarUrlArgs, UserBlockDuration, UserBlockedEvent, UserCanReceiveOrganizationEmailsWhenNotificationsRestrictedArgs, UserCommitCommentsArgs, UserConnection, UserContentEdit, UserContentEditConnection, UserContentEditEdge, UserContributionsCollectionArgs, UserEdge, UserEmailMetadata, UserEnterprisesArgs, UserFollowersArgs, UserFollowingArgs, UserGistArgs, UserGistCommentsArgs, UserGistsArgs, UserHovercardArgs, UserIsSponsoredByArgs, UserIssueCommentsArgs, UserIssuesArgs, UserLifetimeReceivedSponsorshipValuesArgs, UserList, UserListConnection, UserListEdge, UserListItems, UserListItemsArgs, UserListItemsConnection, UserListItemsEdge, UserListSuggestion, UserListsArgs, UserOrganizationArgs, UserOrganizationVerifiedDomainEmailsArgs, UserOrganizationsArgs, UserPackagesArgs, UserPinnableItemsArgs, UserPinnedItemsArgs, UserProjectArgs, UserProjectV2Args, UserProjectsArgs, UserProjectsV2Args, UserPublicKeysArgs, UserPullRequestsArgs, UserRecentProjectsArgs, UserRepositoriesArgs, UserRepositoriesContributedToArgs, UserRepositoryArgs, UserRepositoryDiscussionCommentsArgs, UserRepositoryDiscussionsArgs, UserSavedRepliesArgs, UserSocialAccountsArgs, UserSponsoringArgs, UserSponsorsActivitiesArgs, UserSponsorsArgs, UserSponsorshipForViewerAsSponsorArgs, UserSponsorshipForViewerAsSponsorableArgs, UserSponsorshipNewslettersArgs, UserSponsorshipsAsMaintainerArgs, UserSponsorshipsAsSponsorArgs, UserStarredRepositoriesArgs, UserStatus, UserStatusConnection, UserStatusEdge, UserStatusOrder, UserStatusOrderField, UserTopRepositoriesArgs, UserTotalSponsorshipAmountAsSponsorInCentsArgs, UserWatchingArgs, VerifiableDomain, VerifiableDomainConnection, VerifiableDomainEdge, VerifiableDomainOrder, VerifiableDomainOrderField, VerifiableDomainOwner, VerifyVerifiableDomainInput, VerifyVerifiableDomainPayload, ViewerHovercardContext, Votable, Workflow, WorkflowFileReference, WorkflowFileReferenceInput, WorkflowRun, WorkflowRunConnection, WorkflowRunDeploymentReviewsArgs, WorkflowRunEdge, WorkflowRunFile, WorkflowRunOrder, WorkflowRunOrderField, WorkflowRunPendingDeploymentRequestsArgs, WorkflowRunsArgs, WorkflowState, WorkflowsParameters, WorkflowsParametersInput };
|
|
28176
|
+
export type { AbortQueuedMigrationsInput, AbortQueuedMigrationsPayload, AbortRepositoryMigrationInput, AbortRepositoryMigrationPayload, AcceptEnterpriseAdministratorInvitationInput, AcceptEnterpriseAdministratorInvitationPayload, AcceptEnterpriseMemberInvitationInput, AcceptEnterpriseMemberInvitationPayload, AcceptTopicSuggestionInput, AcceptTopicSuggestionPayload, Actor, ActorAvatarUrlArgs, ActorLocation, ActorType, AddAssigneesToAssignableInput, AddAssigneesToAssignablePayload, AddCommentInput, AddCommentPayload, AddDiscussionCommentInput, AddDiscussionCommentPayload, AddDiscussionPollVoteInput, AddDiscussionPollVotePayload, AddEnterpriseOrganizationMemberInput, AddEnterpriseOrganizationMemberPayload, AddEnterpriseSupportEntitlementInput, AddEnterpriseSupportEntitlementPayload, AddLabelsToLabelableInput, AddLabelsToLabelablePayload, AddProjectCardInput, AddProjectCardPayload, AddProjectColumnInput, AddProjectColumnPayload, AddProjectV2DraftIssueInput, AddProjectV2DraftIssuePayload, AddProjectV2ItemByIdInput, AddProjectV2ItemByIdPayload, AddPullRequestReviewCommentInput, AddPullRequestReviewCommentPayload, AddPullRequestReviewInput, AddPullRequestReviewPayload, AddPullRequestReviewThreadInput, AddPullRequestReviewThreadPayload, AddPullRequestReviewThreadReplyInput, AddPullRequestReviewThreadReplyPayload, AddReactionInput, AddReactionPayload, AddStarInput, AddStarPayload, AddUpvoteInput, AddUpvotePayload, AddVerifiableDomainInput, AddVerifiableDomainPayload, AddedToMergeQueueEvent, AddedToProjectEvent, AnnouncementBanner, App, AppIpAllowListEntriesArgs, AppLogoUrlArgs, ApproveDeploymentsInput, ApproveDeploymentsPayload, ApproveVerifiableDomainInput, ApproveVerifiableDomainPayload, ArchiveProjectV2ItemInput, ArchiveProjectV2ItemPayload, ArchiveRepositoryInput, ArchiveRepositoryPayload, Assignable, AssignableAssigneesArgs, AssignedEvent, Assignee, AuditEntry, AuditEntryActor, AuditLogOrder, AuditLogOrderField, AutoMergeDisabledEvent, AutoMergeEnabledEvent, AutoMergeRequest, AutoRebaseEnabledEvent, AutoSquashEnabledEvent, AutomaticBaseChangeFailedEvent, AutomaticBaseChangeSucceededEvent, BaseRefChangedEvent, BaseRefDeletedEvent, BaseRefForcePushedEvent, Blame, BlameRange, Blob, Bot, BotAvatarUrlArgs, BranchActorAllowanceActor, BranchNamePatternParameters, BranchNamePatternParametersInput, BranchProtectionRule, BranchProtectionRuleBranchProtectionRuleConflictsArgs, BranchProtectionRuleBypassForcePushAllowancesArgs, BranchProtectionRuleBypassPullRequestAllowancesArgs, BranchProtectionRuleConflict, BranchProtectionRuleConflictConnection, BranchProtectionRuleConflictEdge, BranchProtectionRuleConnection, BranchProtectionRuleEdge, BranchProtectionRuleMatchingRefsArgs, BranchProtectionRulePushAllowancesArgs, BranchProtectionRuleReviewDismissalAllowancesArgs, BulkSponsorship, BypassActor, BypassForcePushAllowance, BypassForcePushAllowanceConnection, BypassForcePushAllowanceEdge, BypassPullRequestAllowance, BypassPullRequestAllowanceConnection, BypassPullRequestAllowanceEdge, CancelEnterpriseAdminInvitationInput, CancelEnterpriseAdminInvitationPayload, CancelEnterpriseMemberInvitationInput, CancelEnterpriseMemberInvitationPayload, CancelSponsorshipInput, CancelSponsorshipPayload, ChangeUserStatusInput, ChangeUserStatusPayload, CheckAnnotation, CheckAnnotationConnection, CheckAnnotationData, CheckAnnotationEdge, CheckAnnotationLevel, CheckAnnotationPosition, CheckAnnotationRange, CheckAnnotationSpan, CheckConclusionState, CheckRun, CheckRunAction, CheckRunAnnotationsArgs, CheckRunConnection, CheckRunEdge, CheckRunFilter, CheckRunIsRequiredArgs, CheckRunOutput, CheckRunOutputImage, CheckRunState, CheckRunStateCount, CheckRunStepsArgs, CheckRunType, CheckStatusState, CheckStep, CheckStepConnection, CheckStepEdge, CheckSuite, CheckSuiteAutoTriggerPreference, CheckSuiteCheckRunsArgs, CheckSuiteConnection, CheckSuiteEdge, CheckSuiteFilter, CheckSuiteMatchingPullRequestsArgs, Claimable, ClearLabelsFromLabelableInput, ClearLabelsFromLabelablePayload, ClearProjectV2ItemFieldValueInput, ClearProjectV2ItemFieldValuePayload, CloneProjectInput, CloneProjectPayload, CloneTemplateRepositoryInput, CloneTemplateRepositoryPayload, Closable, CloseDiscussionInput, CloseDiscussionPayload, CloseIssueInput, CloseIssuePayload, ClosePullRequestInput, ClosePullRequestPayload, ClosedEvent, Closer, CodeOfConduct, CodeScanningParameters, CodeScanningParametersInput, CodeScanningTool, CodeScanningToolInput, CollaboratorAffiliation, Comment, CommentAuthorAssociation, CommentCannotUpdateReason, CommentDeletedEvent, CommentUserContentEditsArgs, Commit, CommitAssociatedPullRequestsArgs, CommitAuthor, CommitAuthorEmailPatternParameters, CommitAuthorEmailPatternParametersInput, CommitAuthorsArgs, CommitBlameArgs, CommitCheckSuitesArgs, CommitComment, CommitCommentConnection, CommitCommentEdge, CommitCommentReactionsArgs, CommitCommentThread, CommitCommentThreadCommentsArgs, CommitCommentUserContentEditsArgs, CommitCommentsArgs, CommitConnection, CommitContributionOrder, CommitContributionOrderField, CommitContributionsByRepository, CommitContributionsByRepositoryContributionsArgs, CommitDeploymentsArgs, CommitEdge, CommitFileArgs, CommitHistoryArgs, CommitHistoryConnection, CommitMessage, CommitMessagePatternParameters, CommitMessagePatternParametersInput, CommitParentsArgs, CommitSubmodulesArgs, CommittableBranch, CommitterEmailPatternParameters, CommitterEmailPatternParametersInput, Comparison, ComparisonCommitConnection, ComparisonCommitsArgs, ComparisonStatus, ConnectedEvent, ContributingGuidelines, Contribution, ContributionCalendar, ContributionCalendarDay, ContributionCalendarMonth, ContributionCalendarWeek, ContributionLevel, ContributionOrder, ContributionsCollection, ContributionsCollectionCommitContributionsByRepositoryArgs, ContributionsCollectionIssueContributionsArgs, ContributionsCollectionIssueContributionsByRepositoryArgs, ContributionsCollectionPullRequestContributionsArgs, ContributionsCollectionPullRequestContributionsByRepositoryArgs, ContributionsCollectionPullRequestReviewContributionsArgs, ContributionsCollectionPullRequestReviewContributionsByRepositoryArgs, ContributionsCollectionRepositoryContributionsArgs, ContributionsCollectionTotalIssueContributionsArgs, ContributionsCollectionTotalPullRequestContributionsArgs, ContributionsCollectionTotalRepositoriesWithContributedIssuesArgs, ContributionsCollectionTotalRepositoriesWithContributedPullRequestsArgs, ContributionsCollectionTotalRepositoryContributionsArgs, ConvertProjectCardNoteToIssueInput, ConvertProjectCardNoteToIssuePayload, ConvertPullRequestToDraftInput, ConvertPullRequestToDraftPayload, ConvertToDraftEvent, ConvertedNoteToIssueEvent, ConvertedToDiscussionEvent, CopilotEndpoints, CopyProjectV2Input, CopyProjectV2Payload, CreateAttributionInvitationInput, CreateAttributionInvitationPayload, CreateBranchProtectionRuleInput, CreateBranchProtectionRulePayload, CreateCheckRunInput, CreateCheckRunPayload, CreateCheckSuiteInput, CreateCheckSuitePayload, CreateCommitOnBranchInput, CreateCommitOnBranchPayload, CreateDeploymentInput, CreateDeploymentPayload, CreateDeploymentStatusInput, CreateDeploymentStatusPayload, CreateDiscussionInput, CreateDiscussionPayload, CreateEnterpriseOrganizationInput, CreateEnterpriseOrganizationPayload, CreateEnvironmentInput, CreateEnvironmentPayload, CreateIpAllowListEntryInput, CreateIpAllowListEntryPayload, CreateIssueInput, CreateIssuePayload, CreateLabelInput, CreateLabelPayload, CreateLinkedBranchInput, CreateLinkedBranchPayload, CreateMigrationSourceInput, CreateMigrationSourcePayload, CreateProjectInput, CreateProjectPayload, CreateProjectV2FieldInput, CreateProjectV2FieldPayload, CreateProjectV2Input, CreateProjectV2Payload, CreatePullRequestInput, CreatePullRequestPayload, CreateRefInput, CreateRefPayload, CreateRepositoryInput, CreateRepositoryPayload, CreateRepositoryRulesetInput, CreateRepositoryRulesetPayload, CreateSponsorsListingInput, CreateSponsorsListingPayload, CreateSponsorsTierInput, CreateSponsorsTierPayload, CreateSponsorshipInput, CreateSponsorshipPayload, CreateSponsorshipsInput, CreateSponsorshipsPayload, CreateTeamDiscussionCommentInput, CreateTeamDiscussionCommentPayload, CreateTeamDiscussionInput, CreateTeamDiscussionPayload, CreateUserListInput, CreateUserListPayload, CreatedCommitContribution, CreatedCommitContributionConnection, CreatedCommitContributionEdge, CreatedIssueContribution, CreatedIssueContributionConnection, CreatedIssueContributionEdge, CreatedIssueOrRestrictedContribution, CreatedPullRequestContribution, CreatedPullRequestContributionConnection, CreatedPullRequestContributionEdge, CreatedPullRequestOrRestrictedContribution, CreatedPullRequestReviewContribution, CreatedPullRequestReviewContributionConnection, CreatedPullRequestReviewContributionEdge, CreatedRepositoryContribution, CreatedRepositoryContributionConnection, CreatedRepositoryContributionEdge, CreatedRepositoryOrRestrictedContribution, CrossReferencedEvent, Cvss, Cwe, CweConnection, CweEdge, DeclineTopicSuggestionInput, DeclineTopicSuggestionPayload, DefaultRepositoryPermissionField, Deletable, DeleteBranchProtectionRuleInput, DeleteBranchProtectionRulePayload, DeleteDeploymentInput, DeleteDeploymentPayload, DeleteDiscussionCommentInput, DeleteDiscussionCommentPayload, DeleteDiscussionInput, DeleteDiscussionPayload, DeleteEnvironmentInput, DeleteEnvironmentPayload, DeleteIpAllowListEntryInput, DeleteIpAllowListEntryPayload, DeleteIssueCommentInput, DeleteIssueCommentPayload, DeleteIssueInput, DeleteIssuePayload, DeleteLabelInput, DeleteLabelPayload, DeleteLinkedBranchInput, DeleteLinkedBranchPayload, DeletePackageVersionInput, DeletePackageVersionPayload, DeleteProjectCardInput, DeleteProjectCardPayload, DeleteProjectColumnInput, DeleteProjectColumnPayload, DeleteProjectInput, DeleteProjectPayload, DeleteProjectV2FieldInput, DeleteProjectV2FieldPayload, DeleteProjectV2Input, DeleteProjectV2ItemInput, DeleteProjectV2ItemPayload, DeleteProjectV2Payload, DeleteProjectV2WorkflowInput, DeleteProjectV2WorkflowPayload, DeletePullRequestReviewCommentInput, DeletePullRequestReviewCommentPayload, DeletePullRequestReviewInput, DeletePullRequestReviewPayload, DeleteRefInput, DeleteRefPayload, DeleteRepositoryRulesetInput, DeleteRepositoryRulesetPayload, DeleteTeamDiscussionCommentInput, DeleteTeamDiscussionCommentPayload, DeleteTeamDiscussionInput, DeleteTeamDiscussionPayload, DeleteUserListInput, DeleteUserListPayload, DeleteVerifiableDomainInput, DeleteVerifiableDomainPayload, DemilestonedEvent, DependabotUpdate, DependabotUpdateError, DependencyGraphDependency, DependencyGraphDependencyConnection, DependencyGraphDependencyEdge, DependencyGraphEcosystem, DependencyGraphManifest, DependencyGraphManifestConnection, DependencyGraphManifestDependenciesArgs, DependencyGraphManifestEdge, DeployKey, DeployKeyConnection, DeployKeyEdge, DeployedEvent, Deployment, DeploymentConnection, DeploymentEdge, DeploymentEnvironmentChangedEvent, DeploymentOrder, DeploymentOrderField, DeploymentProtectionRule, DeploymentProtectionRuleConnection, DeploymentProtectionRuleEdge, DeploymentProtectionRuleReviewersArgs, DeploymentProtectionRuleType, DeploymentRequest, DeploymentRequestConnection, DeploymentRequestEdge, DeploymentRequestReviewersArgs, DeploymentReview, DeploymentReviewConnection, DeploymentReviewEdge, DeploymentReviewEnvironmentsArgs, DeploymentReviewState, DeploymentReviewer, DeploymentReviewerConnection, DeploymentReviewerEdge, DeploymentState, DeploymentStatus, DeploymentStatusConnection, DeploymentStatusEdge, DeploymentStatusState, DeploymentStatusesArgs, DequeuePullRequestInput, DequeuePullRequestPayload, DiffSide, DisablePullRequestAutoMergeInput, DisablePullRequestAutoMergePayload, DisconnectedEvent, Discussion, DiscussionCategory, DiscussionCategoryConnection, DiscussionCategoryEdge, DiscussionCloseReason, DiscussionComment, DiscussionCommentConnection, DiscussionCommentEdge, DiscussionCommentReactionsArgs, DiscussionCommentRepliesArgs, DiscussionCommentUserContentEditsArgs, DiscussionCommentsArgs, DiscussionConnection, DiscussionEdge, DiscussionLabelsArgs, DiscussionOrder, DiscussionOrderField, DiscussionPoll, DiscussionPollOption, DiscussionPollOptionConnection, DiscussionPollOptionEdge, DiscussionPollOptionOrder, DiscussionPollOptionOrderField, DiscussionPollOptionsArgs, DiscussionReactionsArgs, DiscussionState, DiscussionStateReason, DiscussionUserContentEditsArgs, DismissPullRequestReviewInput, DismissPullRequestReviewPayload, DismissReason, DismissRepositoryVulnerabilityAlertInput, DismissRepositoryVulnerabilityAlertPayload, DraftIssue, DraftIssueAssigneesArgs, DraftIssueProjectV2ItemsArgs, DraftIssueProjectsV2Args, DraftPullRequestReviewComment, DraftPullRequestReviewThread, EnablePullRequestAutoMergeInput, EnablePullRequestAutoMergePayload, EnqueuePullRequestInput, EnqueuePullRequestPayload, Enterprise, EnterpriseAdministratorConnection, EnterpriseAdministratorEdge, EnterpriseAdministratorInvitation, EnterpriseAdministratorInvitationConnection, EnterpriseAdministratorInvitationEdge, EnterpriseAdministratorInvitationOrder, EnterpriseAdministratorInvitationOrderField, EnterpriseAdministratorRole, EnterpriseAllowPrivateRepositoryForkingPolicyValue, EnterpriseAuditEntryData, EnterpriseAvatarUrlArgs, EnterpriseBillingInfo, EnterpriseConnection, EnterpriseDefaultRepositoryPermissionSettingValue, EnterpriseEdge, EnterpriseEnabledDisabledSettingValue, EnterpriseEnabledSettingValue, EnterpriseFailedInvitationConnection, EnterpriseFailedInvitationEdge, EnterpriseIdentityProvider, EnterpriseIdentityProviderExternalIdentitiesArgs, EnterpriseMember, EnterpriseMemberConnection, EnterpriseMemberEdge, EnterpriseMemberInvitation, EnterpriseMemberInvitationConnection, EnterpriseMemberInvitationEdge, EnterpriseMemberInvitationOrder, EnterpriseMemberInvitationOrderField, EnterpriseMemberOrder, EnterpriseMemberOrderField, EnterpriseMembersArgs, EnterpriseMembersCanCreateRepositoriesSettingValue, EnterpriseMembersCanMakePurchasesSettingValue, EnterpriseMembershipType, EnterpriseOrder, EnterpriseOrderField, EnterpriseOrganizationMembershipConnection, EnterpriseOrganizationMembershipEdge, EnterpriseOrganizationsArgs, EnterpriseOutsideCollaboratorConnection, EnterpriseOutsideCollaboratorEdge, EnterpriseOutsideCollaboratorEdgeRepositoriesArgs, EnterpriseOwnerInfo, EnterpriseOwnerInfoAdminsArgs, EnterpriseOwnerInfoAffiliatedUsersWithTwoFactorDisabledArgs, EnterpriseOwnerInfoAllowPrivateRepositoryForkingSettingOrganizationsArgs, EnterpriseOwnerInfoDefaultRepositoryPermissionSettingOrganizationsArgs, EnterpriseOwnerInfoDomainsArgs, EnterpriseOwnerInfoEnterpriseServerInstallationsArgs, EnterpriseOwnerInfoFailedInvitationsArgs, EnterpriseOwnerInfoIpAllowListEntriesArgs, EnterpriseOwnerInfoMembersCanChangeRepositoryVisibilitySettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanCreateRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteIssuesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanInviteCollaboratorsSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanUpdateProtectedBranchesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanViewDependencyInsightsSettingOrganizationsArgs, EnterpriseOwnerInfoOrganizationProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoOutsideCollaboratorsArgs, EnterpriseOwnerInfoPendingAdminInvitationsArgs, EnterpriseOwnerInfoPendingCollaboratorInvitationsArgs, EnterpriseOwnerInfoPendingMemberInvitationsArgs, EnterpriseOwnerInfoPendingUnaffiliatedMemberInvitationsArgs, EnterpriseOwnerInfoRepositoryProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoSamlIdentityProviderSettingOrganizationsArgs, EnterpriseOwnerInfoSupportEntitlementsArgs, EnterpriseOwnerInfoTeamDiscussionsSettingOrganizationsArgs, EnterpriseOwnerInfoTwoFactorRequiredSettingOrganizationsArgs, EnterprisePendingMemberInvitationConnection, EnterprisePendingMemberInvitationEdge, EnterpriseRepositoryInfo, EnterpriseRepositoryInfoConnection, EnterpriseRepositoryInfoEdge, EnterpriseServerInstallation, EnterpriseServerInstallationConnection, EnterpriseServerInstallationEdge, EnterpriseServerInstallationMembershipConnection, EnterpriseServerInstallationMembershipEdge, EnterpriseServerInstallationOrder, EnterpriseServerInstallationOrderField, EnterpriseServerInstallationUserAccountsArgs, EnterpriseServerInstallationUserAccountsUploadsArgs, EnterpriseServerUserAccount, EnterpriseServerUserAccountConnection, EnterpriseServerUserAccountEdge, EnterpriseServerUserAccountEmail, EnterpriseServerUserAccountEmailConnection, EnterpriseServerUserAccountEmailEdge, EnterpriseServerUserAccountEmailOrder, EnterpriseServerUserAccountEmailOrderField, EnterpriseServerUserAccountEmailsArgs, EnterpriseServerUserAccountOrder, EnterpriseServerUserAccountOrderField, EnterpriseServerUserAccountsUpload, EnterpriseServerUserAccountsUploadConnection, EnterpriseServerUserAccountsUploadEdge, EnterpriseServerUserAccountsUploadOrder, EnterpriseServerUserAccountsUploadOrderField, EnterpriseServerUserAccountsUploadSyncState, EnterpriseUserAccount, EnterpriseUserAccountAvatarUrlArgs, EnterpriseUserAccountEnterpriseInstallationsArgs, EnterpriseUserAccountMembershipRole, EnterpriseUserAccountOrganizationsArgs, EnterpriseUserDeployment, Environment, EnvironmentConnection, EnvironmentEdge, EnvironmentOrderField, EnvironmentPinnedFilterField, EnvironmentProtectionRulesArgs, Environments, Exact, ExternalIdentity, ExternalIdentityAttribute, ExternalIdentityConnection, ExternalIdentityEdge, ExternalIdentitySamlAttributes, ExternalIdentityScimAttributes, FileAddition, FileChanges, FileDeletion, FileExtensionRestrictionParameters, FileExtensionRestrictionParametersInput, FilePathRestrictionParameters, FilePathRestrictionParametersInput, FileViewedState, FollowOrganizationInput, FollowOrganizationPayload, FollowUserInput, FollowUserPayload, FollowerConnection, FollowingConnection, FundingLink, FundingPlatform, GenericHovercardContext, Gist, GistComment, GistCommentConnection, GistCommentEdge, GistCommentUserContentEditsArgs, GistCommentsArgs, GistConnection, GistEdge, GistFile, GistFileTextArgs, GistFilesArgs, GistForksArgs, GistOrder, GistOrderField, GistPrivacy, GistStargazersArgs, GitActor, GitActorAvatarUrlArgs, GitActorConnection, GitActorEdge, GitHubMetadata, GitObject, GitSignature, GitSignatureState, GpgSignature, GrantEnterpriseOrganizationsMigratorRoleInput, GrantEnterpriseOrganizationsMigratorRolePayload, GrantEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs, GrantMigratorRoleInput, GrantMigratorRolePayload, HeadRefDeletedEvent, HeadRefForcePushedEvent, HeadRefRestoredEvent, Hovercard, HovercardContext, IdentityProviderConfigurationState, ImportProjectInput, ImportProjectPayload, Incremental, InputMaybe, InviteEnterpriseAdminInput, InviteEnterpriseAdminPayload, InviteEnterpriseMemberInput, InviteEnterpriseMemberPayload, IpAllowListEnabledSettingValue, IpAllowListEntry, IpAllowListEntryConnection, IpAllowListEntryEdge, IpAllowListEntryOrder, IpAllowListEntryOrderField, IpAllowListForInstalledAppsEnabledSettingValue, IpAllowListOwner, Issue, IssueAssigneesArgs, IssueClosedStateReason, IssueComment, IssueCommentConnection, IssueCommentEdge, IssueCommentOrder, IssueCommentOrderField, IssueCommentReactionsArgs, IssueCommentUserContentEditsArgs, IssueCommentsArgs, IssueConnection, IssueContributionsByRepository, IssueContributionsByRepositoryContributionsArgs, IssueEdge, IssueFilters, IssueHovercardArgs, IssueLabelsArgs, IssueLinkedBranchesArgs, IssueOrPullRequest, IssueOrder, IssueOrderField, IssueParticipantsArgs, IssueProjectCardsArgs, IssueProjectItemsArgs, IssueProjectV2Args, IssueProjectsV2Args, IssueReactionsArgs, IssueState, IssueStateReason, IssueTemplate, IssueTemplateAssigneesArgs, IssueTemplateLabelsArgs, IssueTimelineArgs, IssueTimelineConnection, IssueTimelineItem, IssueTimelineItemEdge, IssueTimelineItems, IssueTimelineItemsArgs, IssueTimelineItemsConnection, IssueTimelineItemsEdge, IssueTimelineItemsItemType, IssueTrackedInIssuesArgs, IssueTrackedIssuesArgs, IssueTrackedIssuesCountArgs, IssueUserContentEditsArgs, JoinedGitHubContribution, Label, LabelConnection, LabelEdge, LabelIssuesArgs, LabelOrder, LabelOrderField, LabelPullRequestsArgs, Labelable, LabelableLabelsArgs, LabeledEvent, Language, LanguageConnection, LanguageEdge, LanguageOrder, LanguageOrderField, License, LicenseRule, LinkProjectV2ToRepositoryInput, LinkProjectV2ToRepositoryPayload, LinkProjectV2ToTeamInput, LinkProjectV2ToTeamPayload, LinkRepositoryToProjectInput, LinkRepositoryToProjectPayload, LinkedBranch, LinkedBranchConnection, LinkedBranchEdge, LockLockableInput, LockLockablePayload, LockReason, Lockable, LockedEvent, MakeEmpty, MakeMaybe, MakeOptional, Mannequin, MannequinAvatarUrlArgs, MannequinConnection, MannequinEdge, MannequinOrder, MannequinOrderField, MarkDiscussionCommentAsAnswerInput, MarkDiscussionCommentAsAnswerPayload, MarkFileAsViewedInput, MarkFileAsViewedPayload, MarkNotificationAsDoneInput, MarkNotificationAsDonePayload, MarkProjectV2AsTemplateInput, MarkProjectV2AsTemplatePayload, MarkPullRequestReadyForReviewInput, MarkPullRequestReadyForReviewPayload, MarkedAsDuplicateEvent, MarketplaceCategory, MarketplaceListing, MarketplaceListingConnection, MarketplaceListingEdge, MarketplaceListingLogoUrlArgs, MaxFilePathLengthParameters, MaxFilePathLengthParametersInput, MaxFileSizeParameters, MaxFileSizeParametersInput, Maybe, MemberFeatureRequestNotification, MemberStatusable, MemberStatusableMemberStatusesArgs, MembersCanDeleteReposClearAuditEntry, MembersCanDeleteReposDisableAuditEntry, MembersCanDeleteReposEnableAuditEntry, MentionedEvent, MergeBranchInput, MergeBranchPayload, MergeCommitMessage, MergeCommitTitle, MergePullRequestInput, MergePullRequestPayload, MergeQueue, MergeQueueConfiguration, MergeQueueEntriesArgs, MergeQueueEntry, MergeQueueEntryConnection, MergeQueueEntryEdge, MergeQueueEntryState, MergeQueueMergingStrategy, MergeStateStatus, MergeableState, MergedEvent, Migration, MigrationSource, MigrationSourceType, MigrationState, Milestone, MilestoneConnection, MilestoneEdge, MilestoneIssuesArgs, MilestoneItem, MilestoneOrder, MilestoneOrderField, MilestonePullRequestsArgs, MilestoneState, MilestonedEvent, Minimizable, MinimizeCommentInput, MinimizeCommentPayload, MoveProjectCardInput, MoveProjectCardPayload, MoveProjectColumnInput, MoveProjectColumnPayload, MovedColumnsInProjectEvent, Mutation, MutationAbortQueuedMigrationsArgs, MutationAbortRepositoryMigrationArgs, MutationAcceptEnterpriseAdministratorInvitationArgs, MutationAcceptEnterpriseMemberInvitationArgs, MutationAcceptTopicSuggestionArgs, MutationAddAssigneesToAssignableArgs, MutationAddCommentArgs, MutationAddDiscussionCommentArgs, MutationAddDiscussionPollVoteArgs, MutationAddEnterpriseOrganizationMemberArgs, MutationAddEnterpriseSupportEntitlementArgs, MutationAddLabelsToLabelableArgs, MutationAddProjectCardArgs, MutationAddProjectColumnArgs, MutationAddProjectV2DraftIssueArgs, MutationAddProjectV2ItemByIdArgs, MutationAddPullRequestReviewArgs, MutationAddPullRequestReviewCommentArgs, MutationAddPullRequestReviewThreadArgs, MutationAddPullRequestReviewThreadReplyArgs, MutationAddReactionArgs, MutationAddStarArgs, MutationAddUpvoteArgs, MutationAddVerifiableDomainArgs, MutationApproveDeploymentsArgs, MutationApproveVerifiableDomainArgs, MutationArchiveProjectV2ItemArgs, MutationArchiveRepositoryArgs, MutationCancelEnterpriseAdminInvitationArgs, MutationCancelEnterpriseMemberInvitationArgs, MutationCancelSponsorshipArgs, MutationChangeUserStatusArgs, MutationClearLabelsFromLabelableArgs, MutationClearProjectV2ItemFieldValueArgs, MutationCloneProjectArgs, MutationCloneTemplateRepositoryArgs, MutationCloseDiscussionArgs, MutationCloseIssueArgs, MutationClosePullRequestArgs, MutationConvertProjectCardNoteToIssueArgs, MutationConvertPullRequestToDraftArgs, MutationCopyProjectV2Args, MutationCreateAttributionInvitationArgs, MutationCreateBranchProtectionRuleArgs, MutationCreateCheckRunArgs, MutationCreateCheckSuiteArgs, MutationCreateCommitOnBranchArgs, MutationCreateDeploymentArgs, MutationCreateDeploymentStatusArgs, MutationCreateDiscussionArgs, MutationCreateEnterpriseOrganizationArgs, MutationCreateEnvironmentArgs, MutationCreateIpAllowListEntryArgs, MutationCreateIssueArgs, MutationCreateLabelArgs, MutationCreateLinkedBranchArgs, MutationCreateMigrationSourceArgs, MutationCreateProjectArgs, MutationCreateProjectV2Args, MutationCreateProjectV2FieldArgs, MutationCreatePullRequestArgs, MutationCreateRefArgs, MutationCreateRepositoryArgs, MutationCreateRepositoryRulesetArgs, MutationCreateSponsorsListingArgs, MutationCreateSponsorsTierArgs, MutationCreateSponsorshipArgs, MutationCreateSponsorshipsArgs, MutationCreateTeamDiscussionArgs, MutationCreateTeamDiscussionCommentArgs, MutationCreateUserListArgs, MutationDeclineTopicSuggestionArgs, MutationDeleteBranchProtectionRuleArgs, MutationDeleteDeploymentArgs, MutationDeleteDiscussionArgs, MutationDeleteDiscussionCommentArgs, MutationDeleteEnvironmentArgs, MutationDeleteIpAllowListEntryArgs, MutationDeleteIssueArgs, MutationDeleteIssueCommentArgs, MutationDeleteLabelArgs, MutationDeleteLinkedBranchArgs, MutationDeletePackageVersionArgs, MutationDeleteProjectArgs, MutationDeleteProjectCardArgs, MutationDeleteProjectColumnArgs, MutationDeleteProjectV2Args, MutationDeleteProjectV2FieldArgs, MutationDeleteProjectV2ItemArgs, MutationDeleteProjectV2WorkflowArgs, MutationDeletePullRequestReviewArgs, MutationDeletePullRequestReviewCommentArgs, MutationDeleteRefArgs, MutationDeleteRepositoryRulesetArgs, MutationDeleteTeamDiscussionArgs, MutationDeleteTeamDiscussionCommentArgs, MutationDeleteUserListArgs, MutationDeleteVerifiableDomainArgs, MutationDequeuePullRequestArgs, MutationDisablePullRequestAutoMergeArgs, MutationDismissPullRequestReviewArgs, MutationDismissRepositoryVulnerabilityAlertArgs, MutationEnablePullRequestAutoMergeArgs, MutationEnqueuePullRequestArgs, MutationFollowOrganizationArgs, MutationFollowUserArgs, MutationGrantEnterpriseOrganizationsMigratorRoleArgs, MutationGrantMigratorRoleArgs, MutationImportProjectArgs, MutationInviteEnterpriseAdminArgs, MutationInviteEnterpriseMemberArgs, MutationLinkProjectV2ToRepositoryArgs, MutationLinkProjectV2ToTeamArgs, MutationLinkRepositoryToProjectArgs, MutationLockLockableArgs, MutationMarkDiscussionCommentAsAnswerArgs, MutationMarkFileAsViewedArgs, MutationMarkNotificationAsDoneArgs, MutationMarkProjectV2AsTemplateArgs, MutationMarkPullRequestReadyForReviewArgs, MutationMergeBranchArgs, MutationMergePullRequestArgs, MutationMinimizeCommentArgs, MutationMoveProjectCardArgs, MutationMoveProjectColumnArgs, MutationPinEnvironmentArgs, MutationPinIssueArgs, MutationPublishSponsorsTierArgs, MutationRegenerateEnterpriseIdentityProviderRecoveryCodesArgs, MutationRegenerateVerifiableDomainTokenArgs, MutationRejectDeploymentsArgs, MutationRemoveAssigneesFromAssignableArgs, MutationRemoveEnterpriseAdminArgs, MutationRemoveEnterpriseIdentityProviderArgs, MutationRemoveEnterpriseMemberArgs, MutationRemoveEnterpriseOrganizationArgs, MutationRemoveEnterpriseSupportEntitlementArgs, MutationRemoveLabelsFromLabelableArgs, MutationRemoveOutsideCollaboratorArgs, MutationRemoveReactionArgs, MutationRemoveStarArgs, MutationRemoveUpvoteArgs, MutationReopenDiscussionArgs, MutationReopenIssueArgs, MutationReopenPullRequestArgs, MutationReorderEnvironmentArgs, MutationRequestReviewsArgs, MutationRerequestCheckSuiteArgs, MutationResolveReviewThreadArgs, MutationRetireSponsorsTierArgs, MutationRevertPullRequestArgs, MutationRevokeEnterpriseOrganizationsMigratorRoleArgs, MutationRevokeMigratorRoleArgs, MutationSetEnterpriseIdentityProviderArgs, MutationSetOrganizationInteractionLimitArgs, MutationSetRepositoryInteractionLimitArgs, MutationSetUserInteractionLimitArgs, MutationStartOrganizationMigrationArgs, MutationStartRepositoryMigrationArgs, MutationSubmitPullRequestReviewArgs, MutationTransferEnterpriseOrganizationArgs, MutationTransferIssueArgs, MutationUnarchiveProjectV2ItemArgs, MutationUnarchiveRepositoryArgs, MutationUnfollowOrganizationArgs, MutationUnfollowUserArgs, MutationUnlinkProjectV2FromRepositoryArgs, MutationUnlinkProjectV2FromTeamArgs, MutationUnlinkRepositoryFromProjectArgs, MutationUnlockLockableArgs, MutationUnmarkDiscussionCommentAsAnswerArgs, MutationUnmarkFileAsViewedArgs, MutationUnmarkIssueAsDuplicateArgs, MutationUnmarkProjectV2AsTemplateArgs, MutationUnminimizeCommentArgs, MutationUnpinIssueArgs, MutationUnresolveReviewThreadArgs, MutationUnsubscribeFromNotificationsArgs, MutationUpdateBranchProtectionRuleArgs, MutationUpdateCheckRunArgs, MutationUpdateCheckSuitePreferencesArgs, MutationUpdateDiscussionArgs, MutationUpdateDiscussionCommentArgs, MutationUpdateEnterpriseAdministratorRoleArgs, MutationUpdateEnterpriseAllowPrivateRepositoryForkingSettingArgs, MutationUpdateEnterpriseDefaultRepositoryPermissionSettingArgs, MutationUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingArgs, MutationUpdateEnterpriseMembersCanCreateRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteIssuesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanInviteCollaboratorsSettingArgs, MutationUpdateEnterpriseMembersCanMakePurchasesSettingArgs, MutationUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingArgs, MutationUpdateEnterpriseMembersCanViewDependencyInsightsSettingArgs, MutationUpdateEnterpriseOrganizationProjectsSettingArgs, MutationUpdateEnterpriseOwnerOrganizationRoleArgs, MutationUpdateEnterpriseProfileArgs, MutationUpdateEnterpriseRepositoryProjectsSettingArgs, MutationUpdateEnterpriseTeamDiscussionsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationRequiredSettingArgs, MutationUpdateEnvironmentArgs, MutationUpdateIpAllowListEnabledSettingArgs, MutationUpdateIpAllowListEntryArgs, MutationUpdateIpAllowListForInstalledAppsEnabledSettingArgs, MutationUpdateIssueArgs, MutationUpdateIssueCommentArgs, MutationUpdateLabelArgs, MutationUpdateNotificationRestrictionSettingArgs, MutationUpdateOrganizationAllowPrivateRepositoryForkingSettingArgs, MutationUpdateOrganizationWebCommitSignoffSettingArgs, MutationUpdatePatreonSponsorabilityArgs, MutationUpdateProjectArgs, MutationUpdateProjectCardArgs, MutationUpdateProjectColumnArgs, MutationUpdateProjectV2Args, MutationUpdateProjectV2CollaboratorsArgs, MutationUpdateProjectV2DraftIssueArgs, MutationUpdateProjectV2ItemFieldValueArgs, MutationUpdateProjectV2ItemPositionArgs, MutationUpdatePullRequestArgs, MutationUpdatePullRequestBranchArgs, MutationUpdatePullRequestReviewArgs, MutationUpdatePullRequestReviewCommentArgs, MutationUpdateRefArgs, MutationUpdateRefsArgs, MutationUpdateRepositoryArgs, MutationUpdateRepositoryRulesetArgs, MutationUpdateRepositoryWebCommitSignoffSettingArgs, MutationUpdateSponsorshipPreferencesArgs, MutationUpdateSubscriptionArgs, MutationUpdateTeamDiscussionArgs, MutationUpdateTeamDiscussionCommentArgs, MutationUpdateTeamReviewAssignmentArgs, MutationUpdateTeamsRepositoryArgs, MutationUpdateTopicsArgs, MutationUpdateUserListArgs, MutationUpdateUserListsForItemArgs, MutationVerifyVerifiableDomainArgs, Node, NotificationRestrictionSettingValue, OauthApplicationAuditEntryData, OauthApplicationCreateAuditEntry, OauthApplicationCreateAuditEntryState, OidcProvider, OidcProviderExternalIdentitiesArgs, OidcProviderType, OperationType, OrderDirection, OrgAddBillingManagerAuditEntry, OrgAddMemberAuditEntry, OrgAddMemberAuditEntryPermission, OrgBlockUserAuditEntry, OrgConfigDisableCollaboratorsOnlyAuditEntry, OrgConfigEnableCollaboratorsOnlyAuditEntry, OrgCreateAuditEntry, OrgCreateAuditEntryBillingPlan, OrgDisableOauthAppRestrictionsAuditEntry, OrgDisableSamlAuditEntry, OrgDisableTwoFactorRequirementAuditEntry, OrgEnableOauthAppRestrictionsAuditEntry, OrgEnableSamlAuditEntry, OrgEnableTwoFactorRequirementAuditEntry, OrgEnterpriseOwnerOrder, OrgEnterpriseOwnerOrderField, OrgInviteMemberAuditEntry, OrgInviteToBusinessAuditEntry, OrgOauthAppAccessApprovedAuditEntry, OrgOauthAppAccessBlockedAuditEntry, OrgOauthAppAccessDeniedAuditEntry, OrgOauthAppAccessRequestedAuditEntry, OrgOauthAppAccessUnblockedAuditEntry, OrgRemoveBillingManagerAuditEntry, OrgRemoveBillingManagerAuditEntryReason, OrgRemoveMemberAuditEntry, OrgRemoveMemberAuditEntryMembershipType, OrgRemoveMemberAuditEntryReason, OrgRemoveOutsideCollaboratorAuditEntry, OrgRemoveOutsideCollaboratorAuditEntryMembershipType, OrgRemoveOutsideCollaboratorAuditEntryReason, OrgRestoreMemberAuditEntry, OrgRestoreMemberAuditEntryMembership, OrgRestoreMemberMembershipOrganizationAuditEntryData, OrgRestoreMemberMembershipRepositoryAuditEntryData, OrgRestoreMemberMembershipTeamAuditEntryData, OrgUnblockUserAuditEntry, OrgUpdateDefaultRepositoryPermissionAuditEntry, OrgUpdateDefaultRepositoryPermissionAuditEntryPermission, OrgUpdateMemberAuditEntry, OrgUpdateMemberAuditEntryPermission, OrgUpdateMemberRepositoryCreationPermissionAuditEntry, OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility, OrgUpdateMemberRepositoryInvitationPermissionAuditEntry, Organization, OrganizationAnyPinnableItemsArgs, OrganizationAuditEntry, OrganizationAuditEntryConnection, OrganizationAuditEntryData, OrganizationAuditEntryEdge, OrganizationAuditLogArgs, OrganizationAvatarUrlArgs, OrganizationConnection, OrganizationDomainsArgs, OrganizationEdge, OrganizationEnterpriseOwnerConnection, OrganizationEnterpriseOwnerEdge, OrganizationEnterpriseOwnersArgs, OrganizationIdentityProvider, OrganizationIdentityProviderExternalIdentitiesArgs, OrganizationInvitation, OrganizationInvitationConnection, OrganizationInvitationEdge, OrganizationInvitationRole, OrganizationInvitationSource, OrganizationInvitationType, OrganizationIpAllowListEntriesArgs, OrganizationIsSponsoredByArgs, OrganizationLifetimeReceivedSponsorshipValuesArgs, OrganizationMannequinsArgs, OrganizationMemberConnection, OrganizationMemberEdge, OrganizationMemberRole, OrganizationMemberStatusesArgs, OrganizationMembersCanCreateRepositoriesSettingValue, OrganizationMembersWithRoleArgs, OrganizationMigration, OrganizationMigrationState, OrganizationOrUser, OrganizationOrder, OrganizationOrderField, OrganizationPackagesArgs, OrganizationPendingMembersArgs, OrganizationPinnableItemsArgs, OrganizationPinnedItemsArgs, OrganizationProjectArgs, OrganizationProjectV2Args, OrganizationProjectsArgs, OrganizationProjectsV2Args, OrganizationRecentProjectsArgs, OrganizationRepositoriesArgs, OrganizationRepositoryArgs, OrganizationRepositoryDiscussionCommentsArgs, OrganizationRepositoryDiscussionsArgs, OrganizationRepositoryMigrationsArgs, OrganizationRulesetArgs, OrganizationRulesetsArgs, OrganizationSponsoringArgs, OrganizationSponsorsActivitiesArgs, OrganizationSponsorsArgs, OrganizationSponsorshipForViewerAsSponsorArgs, OrganizationSponsorshipForViewerAsSponsorableArgs, OrganizationSponsorshipNewslettersArgs, OrganizationSponsorshipsAsMaintainerArgs, OrganizationSponsorshipsAsSponsorArgs, OrganizationTeamArgs, OrganizationTeamsArgs, OrganizationTeamsHovercardContext, OrganizationTeamsHovercardContextRelevantTeamsArgs, OrganizationTotalSponsorshipAmountAsSponsorInCentsArgs, OrganizationsHovercardContext, OrganizationsHovercardContextRelevantOrganizationsArgs, Package, PackageConnection, PackageEdge, PackageFile, PackageFileConnection, PackageFileEdge, PackageFileOrder, PackageFileOrderField, PackageOrder, PackageOrderField, PackageOwner, PackageOwnerPackagesArgs, PackageStatistics, PackageTag, PackageType, PackageVersion, PackageVersionArgs, PackageVersionConnection, PackageVersionEdge, PackageVersionFilesArgs, PackageVersionOrder, PackageVersionOrderField, PackageVersionStatistics, PackageVersionsArgs, PageInfo, PatchStatus, PermissionGranter, PermissionSource, PinEnvironmentInput, PinEnvironmentPayload, PinIssueInput, PinIssuePayload, PinnableItem, PinnableItemConnection, PinnableItemEdge, PinnableItemType, PinnedDiscussion, PinnedDiscussionConnection, PinnedDiscussionEdge, PinnedDiscussionGradient, PinnedDiscussionPattern, PinnedEnvironment, PinnedEnvironmentConnection, PinnedEnvironmentEdge, PinnedEnvironmentOrder, PinnedEnvironmentOrderField, PinnedEvent, PinnedIssue, PinnedIssueConnection, PinnedIssueEdge, PrivateRepositoryForkingDisableAuditEntry, PrivateRepositoryForkingEnableAuditEntry, ProfileItemShowcase, ProfileItemShowcaseItemsArgs, ProfileOwner, ProfileOwnerAnyPinnableItemsArgs, ProfileOwnerPinnableItemsArgs, ProfileOwnerPinnedItemsArgs, Project, ProjectCard, ProjectCardArchivedState, ProjectCardConnection, ProjectCardEdge, ProjectCardImport, ProjectCardItem, ProjectCardState, ProjectColumn, ProjectColumnCardsArgs, ProjectColumnConnection, ProjectColumnEdge, ProjectColumnImport, ProjectColumnPurpose, ProjectColumnsArgs, ProjectConnection, ProjectEdge, ProjectOrder, ProjectOrderField, ProjectOwner, ProjectOwnerProjectArgs, ProjectOwnerProjectsArgs, ProjectPendingCardsArgs, ProjectProgress, ProjectState, ProjectTemplate, ProjectV2, ProjectV2Actor, ProjectV2ActorConnection, ProjectV2ActorEdge, ProjectV2Collaborator, ProjectV2Connection, ProjectV2CustomFieldType, ProjectV2Edge, ProjectV2Field, ProjectV2FieldArgs, ProjectV2FieldCommon, ProjectV2FieldConfiguration, ProjectV2FieldConfigurationConnection, ProjectV2FieldConfigurationEdge, ProjectV2FieldConnection, ProjectV2FieldEdge, ProjectV2FieldOrder, ProjectV2FieldOrderField, ProjectV2FieldType, ProjectV2FieldValue, ProjectV2FieldsArgs, ProjectV2Filters, ProjectV2Item, ProjectV2ItemConnection, ProjectV2ItemContent, ProjectV2ItemEdge, ProjectV2ItemFieldDateValue, ProjectV2ItemFieldIterationValue, ProjectV2ItemFieldLabelValue, ProjectV2ItemFieldLabelValueLabelsArgs, ProjectV2ItemFieldMilestoneValue, ProjectV2ItemFieldNumberValue, ProjectV2ItemFieldPullRequestValue, ProjectV2ItemFieldPullRequestValuePullRequestsArgs, ProjectV2ItemFieldRepositoryValue, ProjectV2ItemFieldReviewerValue, ProjectV2ItemFieldReviewerValueReviewersArgs, ProjectV2ItemFieldSingleSelectValue, ProjectV2ItemFieldTextValue, ProjectV2ItemFieldUserValue, ProjectV2ItemFieldUserValueUsersArgs, ProjectV2ItemFieldValue, ProjectV2ItemFieldValueByNameArgs, ProjectV2ItemFieldValueCommon, ProjectV2ItemFieldValueConnection, ProjectV2ItemFieldValueEdge, ProjectV2ItemFieldValueOrder, ProjectV2ItemFieldValueOrderField, ProjectV2ItemFieldValuesArgs, ProjectV2ItemOrder, ProjectV2ItemOrderField, ProjectV2ItemType, ProjectV2ItemsArgs, ProjectV2IterationField, ProjectV2IterationFieldConfiguration, ProjectV2IterationFieldIteration, ProjectV2Order, ProjectV2OrderField, ProjectV2Owner, ProjectV2OwnerProjectV2Args, ProjectV2OwnerProjectsV2Args, ProjectV2Recent, ProjectV2RecentRecentProjectsArgs, ProjectV2RepositoriesArgs, ProjectV2Roles, ProjectV2SingleSelectField, ProjectV2SingleSelectFieldOption, ProjectV2SingleSelectFieldOptionColor, ProjectV2SingleSelectFieldOptionInput, ProjectV2SingleSelectFieldOptionsArgs, ProjectV2SortBy, ProjectV2SortByConnection, ProjectV2SortByEdge, ProjectV2SortByField, ProjectV2SortByFieldConnection, ProjectV2SortByFieldEdge, ProjectV2State, ProjectV2TeamsArgs, ProjectV2View, ProjectV2ViewArgs, ProjectV2ViewConnection, ProjectV2ViewEdge, ProjectV2ViewFieldsArgs, ProjectV2ViewGroupByArgs, ProjectV2ViewGroupByFieldsArgs, ProjectV2ViewLayout, ProjectV2ViewOrder, ProjectV2ViewOrderField, ProjectV2ViewSortByArgs, ProjectV2ViewSortByFieldsArgs, ProjectV2ViewVerticalGroupByArgs, ProjectV2ViewVerticalGroupByFieldsArgs, ProjectV2ViewVisibleFieldsArgs, ProjectV2ViewsArgs, ProjectV2Workflow, ProjectV2WorkflowArgs, ProjectV2WorkflowConnection, ProjectV2WorkflowEdge, ProjectV2WorkflowOrder, ProjectV2WorkflowsArgs, ProjectV2WorkflowsOrderField, PropertyTargetDefinition, PropertyTargetDefinitionInput, PublicKey, PublicKeyConnection, PublicKeyEdge, PublishSponsorsTierInput, PublishSponsorsTierPayload, PullRequest, PullRequestAssigneesArgs, PullRequestBranchUpdateMethod, PullRequestChangedFile, PullRequestChangedFileConnection, PullRequestChangedFileEdge, PullRequestClosingIssuesReferencesArgs, PullRequestCommentsArgs, PullRequestCommit, PullRequestCommitCommentThread, PullRequestCommitCommentThreadCommentsArgs, PullRequestCommitConnection, PullRequestCommitEdge, PullRequestCommitsArgs, PullRequestConnection, PullRequestContributionsByRepository, PullRequestContributionsByRepositoryContributionsArgs, PullRequestEdge, PullRequestFilesArgs, PullRequestHovercardArgs, PullRequestLabelsArgs, PullRequestLatestOpinionatedReviewsArgs, PullRequestLatestReviewsArgs, PullRequestMergeMethod, PullRequestOrder, PullRequestOrderField, PullRequestParameters, PullRequestParametersInput, PullRequestParticipantsArgs, PullRequestProjectCardsArgs, PullRequestProjectItemsArgs, PullRequestProjectV2Args, PullRequestProjectsV2Args, PullRequestReactionsArgs, PullRequestReview, PullRequestReviewComment, PullRequestReviewCommentConnection, PullRequestReviewCommentEdge, PullRequestReviewCommentReactionsArgs, PullRequestReviewCommentState, PullRequestReviewCommentUserContentEditsArgs, PullRequestReviewCommentsArgs, PullRequestReviewConnection, PullRequestReviewContributionsByRepository, PullRequestReviewContributionsByRepositoryContributionsArgs, PullRequestReviewDecision, PullRequestReviewEdge, PullRequestReviewEvent, PullRequestReviewOnBehalfOfArgs, PullRequestReviewReactionsArgs, PullRequestReviewRequestsArgs, PullRequestReviewState, PullRequestReviewThread, PullRequestReviewThreadCommentsArgs, PullRequestReviewThreadConnection, PullRequestReviewThreadEdge, PullRequestReviewThreadSubjectType, PullRequestReviewThreadsArgs, PullRequestReviewUserContentEditsArgs, PullRequestReviewsArgs, PullRequestRevisionMarker, PullRequestState, PullRequestTemplate, PullRequestThread, PullRequestThreadCommentsArgs, PullRequestTimelineArgs, PullRequestTimelineConnection, PullRequestTimelineItem, PullRequestTimelineItemEdge, PullRequestTimelineItems, PullRequestTimelineItemsArgs, PullRequestTimelineItemsConnection, PullRequestTimelineItemsEdge, PullRequestTimelineItemsItemType, PullRequestUpdateState, PullRequestUserContentEditsArgs, PullRequestViewerMergeBodyTextArgs, PullRequestViewerMergeHeadlineTextArgs, Push, PushAllowance, PushAllowanceActor, PushAllowanceConnection, PushAllowanceEdge, Query, QueryCodeOfConductArgs, QueryEnterpriseAdministratorInvitationArgs, QueryEnterpriseAdministratorInvitationByTokenArgs, QueryEnterpriseArgs, QueryEnterpriseMemberInvitationArgs, QueryEnterpriseMemberInvitationByTokenArgs, QueryLicenseArgs, QueryMarketplaceCategoriesArgs, QueryMarketplaceCategoryArgs, QueryMarketplaceListingArgs, QueryMarketplaceListingsArgs, QueryNodeArgs, QueryNodesArgs, QueryOrganizationArgs, QueryRateLimitArgs, QueryRepositoryArgs, QueryRepositoryOwnerArgs, QueryResourceArgs, QuerySearchArgs, QuerySecurityAdvisoriesArgs, QuerySecurityAdvisoryArgs, QuerySecurityVulnerabilitiesArgs, QuerySponsorablesArgs, QueryTopicArgs, QueryUserArgs, RateLimit, Reactable, ReactableReactionsArgs, ReactingUserConnection, ReactingUserEdge, Reaction, ReactionConnection, ReactionContent, ReactionEdge, ReactionGroup, ReactionGroupReactorsArgs, ReactionGroupUsersArgs, ReactionOrder, ReactionOrderField, Reactor, ReactorConnection, ReactorEdge, ReadyForReviewEvent, Ref, RefAssociatedPullRequestsArgs, RefCompareArgs, RefConnection, RefEdge, RefNameConditionTarget, RefNameConditionTargetInput, RefOrder, RefOrderField, RefRulesArgs, RefUpdate, RefUpdateRule, ReferencedEvent, ReferencedSubject, RegenerateEnterpriseIdentityProviderRecoveryCodesInput, RegenerateEnterpriseIdentityProviderRecoveryCodesPayload, RegenerateVerifiableDomainTokenInput, RegenerateVerifiableDomainTokenPayload, RejectDeploymentsInput, RejectDeploymentsPayload, Release, ReleaseAsset, ReleaseAssetConnection, ReleaseAssetEdge, ReleaseConnection, ReleaseEdge, ReleaseMentionsArgs, ReleaseOrder, ReleaseOrderField, ReleaseReactionsArgs, ReleaseReleaseAssetsArgs, ReleaseShortDescriptionHtmlArgs, RemoveAssigneesFromAssignableInput, RemoveAssigneesFromAssignablePayload, RemoveEnterpriseAdminInput, RemoveEnterpriseAdminPayload, RemoveEnterpriseIdentityProviderInput, RemoveEnterpriseIdentityProviderPayload, RemoveEnterpriseMemberInput, RemoveEnterpriseMemberPayload, RemoveEnterpriseOrganizationInput, RemoveEnterpriseOrganizationPayload, RemoveEnterpriseSupportEntitlementInput, RemoveEnterpriseSupportEntitlementPayload, RemoveLabelsFromLabelableInput, RemoveLabelsFromLabelablePayload, RemoveOutsideCollaboratorInput, RemoveOutsideCollaboratorPayload, RemoveReactionInput, RemoveReactionPayload, RemoveStarInput, RemoveStarPayload, RemoveUpvoteInput, RemoveUpvotePayload, RemovedFromMergeQueueEvent, RemovedFromProjectEvent, RenamedTitleEvent, RenamedTitleSubject, ReopenDiscussionInput, ReopenDiscussionPayload, ReopenIssueInput, ReopenIssuePayload, ReopenPullRequestInput, ReopenPullRequestPayload, ReopenedEvent, ReorderEnvironmentInput, ReorderEnvironmentPayload, RepoAccessAuditEntry, RepoAccessAuditEntryVisibility, RepoAddMemberAuditEntry, RepoAddMemberAuditEntryVisibility, RepoAddTopicAuditEntry, RepoArchivedAuditEntry, RepoArchivedAuditEntryVisibility, RepoChangeMergeSettingAuditEntry, RepoChangeMergeSettingAuditEntryMergeType, RepoConfigDisableAnonymousGitAccessAuditEntry, RepoConfigDisableCollaboratorsOnlyAuditEntry, RepoConfigDisableContributorsOnlyAuditEntry, RepoConfigDisableSockpuppetDisallowedAuditEntry, RepoConfigEnableAnonymousGitAccessAuditEntry, RepoConfigEnableCollaboratorsOnlyAuditEntry, RepoConfigEnableContributorsOnlyAuditEntry, RepoConfigEnableSockpuppetDisallowedAuditEntry, RepoConfigLockAnonymousGitAccessAuditEntry, RepoConfigUnlockAnonymousGitAccessAuditEntry, RepoCreateAuditEntry, RepoCreateAuditEntryVisibility, RepoDestroyAuditEntry, RepoDestroyAuditEntryVisibility, RepoRemoveMemberAuditEntry, RepoRemoveMemberAuditEntryVisibility, RepoRemoveTopicAuditEntry, ReportedContentClassifiers, Repository, RepositoryAffiliation, RepositoryAssignableUsersArgs, RepositoryAuditEntryData, RepositoryBranchProtectionRulesArgs, RepositoryCodeowners, RepositoryCodeownersArgs, RepositoryCodeownersError, RepositoryCollaboratorConnection, RepositoryCollaboratorEdge, RepositoryCollaboratorsArgs, RepositoryCommitCommentsArgs, RepositoryConnection, RepositoryContactLink, RepositoryContributionType, RepositoryDependencyGraphManifestsArgs, RepositoryDeployKeysArgs, RepositoryDeploymentsArgs, RepositoryDiscussionArgs, RepositoryDiscussionAuthor, RepositoryDiscussionAuthorRepositoryDiscussionsArgs, RepositoryDiscussionCategoriesArgs, RepositoryDiscussionCategoryArgs, RepositoryDiscussionCommentAuthor, RepositoryDiscussionCommentAuthorRepositoryDiscussionCommentsArgs, RepositoryDiscussionsArgs, RepositoryEdge, RepositoryEnvironmentArgs, RepositoryEnvironmentsArgs, RepositoryForksArgs, RepositoryIdConditionTarget, RepositoryIdConditionTargetInput, RepositoryInfo, RepositoryInfoShortDescriptionHtmlArgs, RepositoryInteractionAbility, RepositoryInteractionLimit, RepositoryInteractionLimitExpiry, RepositoryInteractionLimitOrigin, RepositoryInvitation, RepositoryInvitationConnection, RepositoryInvitationEdge, RepositoryInvitationOrder, RepositoryInvitationOrderField, RepositoryIssueArgs, RepositoryIssueOrPullRequestArgs, RepositoryIssuesArgs, RepositoryLabelArgs, RepositoryLabelsArgs, RepositoryLanguagesArgs, RepositoryLockReason, RepositoryMentionableUsersArgs, RepositoryMergeQueueArgs, RepositoryMigration, RepositoryMigrationConnection, RepositoryMigrationEdge, RepositoryMigrationOrder, RepositoryMigrationOrderDirection, RepositoryMigrationOrderField, RepositoryMilestoneArgs, RepositoryMilestonesArgs, RepositoryNameConditionTarget, RepositoryNameConditionTargetInput, RepositoryNode, RepositoryObjectArgs, RepositoryOrder, RepositoryOrderField, RepositoryOwner, RepositoryOwnerAvatarUrlArgs, RepositoryOwnerRepositoriesArgs, RepositoryOwnerRepositoryArgs, RepositoryPackagesArgs, RepositoryPermission, RepositoryPinnedDiscussionsArgs, RepositoryPinnedEnvironmentsArgs, RepositoryPinnedIssuesArgs, RepositoryPlanFeatures, RepositoryPrivacy, RepositoryProjectArgs, RepositoryProjectV2Args, RepositoryProjectsArgs, RepositoryProjectsV2Args, RepositoryPropertyConditionTarget, RepositoryPropertyConditionTargetInput, RepositoryPullRequestArgs, RepositoryPullRequestsArgs, RepositoryRecentProjectsArgs, RepositoryRefArgs, RepositoryRefsArgs, RepositoryReleaseArgs, RepositoryReleasesArgs, RepositoryRepositoryTopicsArgs, RepositoryRule, RepositoryRuleConditions, RepositoryRuleConditionsInput, RepositoryRuleConnection, RepositoryRuleEdge, RepositoryRuleInput, RepositoryRuleOrder, RepositoryRuleOrderField, RepositoryRuleType, RepositoryRuleset, RepositoryRulesetArgs, RepositoryRulesetBypassActor, RepositoryRulesetBypassActorBypassMode, RepositoryRulesetBypassActorConnection, RepositoryRulesetBypassActorEdge, RepositoryRulesetBypassActorInput, RepositoryRulesetBypassActorsArgs, RepositoryRulesetConnection, RepositoryRulesetEdge, RepositoryRulesetRulesArgs, RepositoryRulesetTarget, RepositoryRulesetsArgs, RepositoryShortDescriptionHtmlArgs, RepositoryStargazersArgs, RepositorySubmodulesArgs, RepositoryTopic, RepositoryTopicConnection, RepositoryTopicEdge, RepositoryVisibility, RepositoryVisibilityChangeDisableAuditEntry, RepositoryVisibilityChangeEnableAuditEntry, RepositoryVulnerabilityAlert, RepositoryVulnerabilityAlertArgs, RepositoryVulnerabilityAlertConnection, RepositoryVulnerabilityAlertDependencyScope, RepositoryVulnerabilityAlertEdge, RepositoryVulnerabilityAlertState, RepositoryVulnerabilityAlertsArgs, RepositoryWatchersArgs, RequestReviewsInput, RequestReviewsPayload, RequestableCheckStatusState, RequestedReviewer, RequestedReviewerConnection, RequestedReviewerEdge, RequirableByPullRequest, RequirableByPullRequestIsRequiredArgs, RequiredDeploymentsParameters, RequiredDeploymentsParametersInput, RequiredStatusCheckDescription, RequiredStatusCheckInput, RequiredStatusChecksParameters, RequiredStatusChecksParametersInput, RerequestCheckSuiteInput, RerequestCheckSuitePayload, ResolveReviewThreadInput, ResolveReviewThreadPayload, RestrictedContribution, RetireSponsorsTierInput, RetireSponsorsTierPayload, RevertPullRequestInput, RevertPullRequestPayload, ReviewDismissalAllowance, ReviewDismissalAllowanceActor, ReviewDismissalAllowanceConnection, ReviewDismissalAllowanceEdge, ReviewDismissedEvent, ReviewRequest, ReviewRequestConnection, ReviewRequestEdge, ReviewRequestRemovedEvent, ReviewRequestedEvent, ReviewStatusHovercardContext, RevokeEnterpriseOrganizationsMigratorRoleInput, RevokeEnterpriseOrganizationsMigratorRolePayload, RevokeEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs, RevokeMigratorRoleInput, RevokeMigratorRolePayload, RoleInOrganization, RuleEnforcement, RuleParameters, RuleParametersInput, RuleSource, SamlDigestAlgorithm, SamlSignatureAlgorithm, SavedReply, SavedReplyConnection, SavedReplyEdge, SavedReplyOrder, SavedReplyOrderField, Scalars, SearchResultItem, SearchResultItemConnection, SearchResultItemEdge, SearchType, SecurityAdvisory, SecurityAdvisoryClassification, SecurityAdvisoryConnection, SecurityAdvisoryCwesArgs, SecurityAdvisoryEcosystem, SecurityAdvisoryEdge, SecurityAdvisoryIdentifier, SecurityAdvisoryIdentifierFilter, SecurityAdvisoryIdentifierType, SecurityAdvisoryOrder, SecurityAdvisoryOrderField, SecurityAdvisoryPackage, SecurityAdvisoryPackageVersion, SecurityAdvisoryReference, SecurityAdvisorySeverity, SecurityAdvisoryVulnerabilitiesArgs, SecurityVulnerability, SecurityVulnerabilityConnection, SecurityVulnerabilityEdge, SecurityVulnerabilityOrder, SecurityVulnerabilityOrderField, SetEnterpriseIdentityProviderInput, SetEnterpriseIdentityProviderPayload, SetOrganizationInteractionLimitInput, SetOrganizationInteractionLimitPayload, SetRepositoryInteractionLimitInput, SetRepositoryInteractionLimitPayload, SetUserInteractionLimitInput, SetUserInteractionLimitPayload, SmimeSignature, SocialAccount, SocialAccountConnection, SocialAccountEdge, SocialAccountProvider, Sponsor, SponsorAndLifetimeValue, SponsorAndLifetimeValueConnection, SponsorAndLifetimeValueEdge, SponsorAndLifetimeValueOrder, SponsorAndLifetimeValueOrderField, SponsorConnection, SponsorEdge, SponsorOrder, SponsorOrderField, Sponsorable, SponsorableIsSponsoredByArgs, SponsorableItem, SponsorableItemConnection, SponsorableItemEdge, SponsorableLifetimeReceivedSponsorshipValuesArgs, SponsorableOrder, SponsorableOrderField, SponsorableSponsoringArgs, SponsorableSponsorsActivitiesArgs, SponsorableSponsorsArgs, SponsorableSponsorshipForViewerAsSponsorArgs, SponsorableSponsorshipForViewerAsSponsorableArgs, SponsorableSponsorshipNewslettersArgs, SponsorableSponsorshipsAsMaintainerArgs, SponsorableSponsorshipsAsSponsorArgs, SponsorableTotalSponsorshipAmountAsSponsorInCentsArgs, SponsorsActivity, SponsorsActivityAction, SponsorsActivityConnection, SponsorsActivityEdge, SponsorsActivityOrder, SponsorsActivityOrderField, SponsorsActivityPeriod, SponsorsCountryOrRegionCode, SponsorsGoal, SponsorsGoalKind, SponsorsListing, SponsorsListingFeatureableItem, SponsorsListingFeaturedItem, SponsorsListingFeaturedItemFeatureableType, SponsorsListingFeaturedItemsArgs, SponsorsListingTiersArgs, SponsorsTier, SponsorsTierAdminInfo, SponsorsTierAdminInfoSponsorshipsArgs, SponsorsTierConnection, SponsorsTierEdge, SponsorsTierOrder, SponsorsTierOrderField, Sponsorship, SponsorshipConnection, SponsorshipEdge, SponsorshipNewsletter, SponsorshipNewsletterConnection, SponsorshipNewsletterEdge, SponsorshipNewsletterOrder, SponsorshipNewsletterOrderField, SponsorshipOrder, SponsorshipOrderField, SponsorshipPaymentSource, SponsorshipPrivacy, SquashMergeCommitMessage, SquashMergeCommitTitle, SshSignature, StarOrder, StarOrderField, StargazerConnection, StargazerEdge, Starrable, StarrableStargazersArgs, StarredRepositoryConnection, StarredRepositoryEdge, StartOrganizationMigrationInput, StartOrganizationMigrationPayload, StartRepositoryMigrationInput, StartRepositoryMigrationPayload, Status, StatusCheckConfiguration, StatusCheckConfigurationInput, StatusCheckRollup, StatusCheckRollupContext, StatusCheckRollupContextConnection, StatusCheckRollupContextEdge, StatusCheckRollupContextsArgs, StatusCombinedContextsArgs, StatusContext, StatusContextArgs, StatusContextAvatarUrlArgs, StatusContextIsRequiredArgs, StatusContextStateCount, StatusState, StripeConnectAccount, SubmitPullRequestReviewInput, SubmitPullRequestReviewPayload, Submodule, SubmoduleConnection, SubmoduleEdge, Subscribable, SubscribableThread, SubscribedEvent, SubscriptionState, SuggestedReviewer, Tag, TagNamePatternParameters, TagNamePatternParametersInput, Team, TeamAddMemberAuditEntry, TeamAddRepositoryAuditEntry, TeamAncestorsArgs, TeamAuditEntryData, TeamAvatarUrlArgs, TeamChangeParentTeamAuditEntry, TeamChildTeamsArgs, TeamConnection, TeamDiscussion, TeamDiscussionArgs, TeamDiscussionComment, TeamDiscussionCommentConnection, TeamDiscussionCommentEdge, TeamDiscussionCommentOrder, TeamDiscussionCommentOrderField, TeamDiscussionCommentReactionsArgs, TeamDiscussionCommentUserContentEditsArgs, TeamDiscussionCommentsArgs, TeamDiscussionConnection, TeamDiscussionEdge, TeamDiscussionOrder, TeamDiscussionOrderField, TeamDiscussionReactionsArgs, TeamDiscussionUserContentEditsArgs, TeamDiscussionsArgs, TeamEdge, TeamInvitationsArgs, TeamMemberConnection, TeamMemberEdge, TeamMemberOrder, TeamMemberOrderField, TeamMemberRole, TeamMemberStatusesArgs, TeamMembersArgs, TeamMembershipType, TeamNotificationSetting, TeamOrder, TeamOrderField, TeamPrivacy, TeamProjectV2Args, TeamProjectsV2Args, TeamRemoveMemberAuditEntry, TeamRemoveRepositoryAuditEntry, TeamRepositoriesArgs, TeamRepositoryConnection, TeamRepositoryEdge, TeamRepositoryOrder, TeamRepositoryOrderField, TeamReviewAssignmentAlgorithm, TeamRole, TextMatch, TextMatchHighlight, ThreadSubscriptionFormAction, ThreadSubscriptionState, Topic, TopicAuditEntryData, TopicRelatedTopicsArgs, TopicRepositoriesArgs, TopicStargazersArgs, TopicSuggestionDeclineReason, TrackedIssueStates, TransferEnterpriseOrganizationInput, TransferEnterpriseOrganizationPayload, TransferIssueInput, TransferIssuePayload, TransferredEvent, Tree, TreeEntry, UnarchiveProjectV2ItemInput, UnarchiveProjectV2ItemPayload, UnarchiveRepositoryInput, UnarchiveRepositoryPayload, UnassignedEvent, UnfollowOrganizationInput, UnfollowOrganizationPayload, UnfollowUserInput, UnfollowUserPayload, UniformResourceLocatable, UnknownSignature, UnlabeledEvent, UnlinkProjectV2FromRepositoryInput, UnlinkProjectV2FromRepositoryPayload, UnlinkProjectV2FromTeamInput, UnlinkProjectV2FromTeamPayload, UnlinkRepositoryFromProjectInput, UnlinkRepositoryFromProjectPayload, UnlockLockableInput, UnlockLockablePayload, UnlockedEvent, UnmarkDiscussionCommentAsAnswerInput, UnmarkDiscussionCommentAsAnswerPayload, UnmarkFileAsViewedInput, UnmarkFileAsViewedPayload, UnmarkIssueAsDuplicateInput, UnmarkIssueAsDuplicatePayload, UnmarkProjectV2AsTemplateInput, UnmarkProjectV2AsTemplatePayload, UnmarkedAsDuplicateEvent, UnminimizeCommentInput, UnminimizeCommentPayload, UnpinIssueInput, UnpinIssuePayload, UnpinnedEvent, UnresolveReviewThreadInput, UnresolveReviewThreadPayload, UnsubscribeFromNotificationsInput, UnsubscribeFromNotificationsPayload, UnsubscribedEvent, Updatable, UpdatableComment, UpdateBranchProtectionRuleInput, UpdateBranchProtectionRulePayload, UpdateCheckRunInput, UpdateCheckRunPayload, UpdateCheckSuitePreferencesInput, UpdateCheckSuitePreferencesPayload, UpdateDiscussionCommentInput, UpdateDiscussionCommentPayload, UpdateDiscussionInput, UpdateDiscussionPayload, UpdateEnterpriseAdministratorRoleInput, UpdateEnterpriseAdministratorRolePayload, UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput, UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload, UpdateEnterpriseDefaultRepositoryPermissionSettingInput, UpdateEnterpriseDefaultRepositoryPermissionSettingPayload, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload, UpdateEnterpriseMembersCanCreateRepositoriesSettingInput, UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload, UpdateEnterpriseMembersCanDeleteIssuesSettingInput, UpdateEnterpriseMembersCanDeleteIssuesSettingPayload, UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput, UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload, UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput, UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload, UpdateEnterpriseMembersCanMakePurchasesSettingInput, UpdateEnterpriseMembersCanMakePurchasesSettingPayload, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload, UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput, UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload, UpdateEnterpriseOrganizationProjectsSettingInput, UpdateEnterpriseOrganizationProjectsSettingPayload, UpdateEnterpriseOwnerOrganizationRoleInput, UpdateEnterpriseOwnerOrganizationRolePayload, UpdateEnterpriseProfileInput, UpdateEnterpriseProfilePayload, UpdateEnterpriseRepositoryProjectsSettingInput, UpdateEnterpriseRepositoryProjectsSettingPayload, UpdateEnterpriseTeamDiscussionsSettingInput, UpdateEnterpriseTeamDiscussionsSettingPayload, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload, UpdateEnvironmentInput, UpdateEnvironmentPayload, UpdateIpAllowListEnabledSettingInput, UpdateIpAllowListEnabledSettingPayload, UpdateIpAllowListEntryInput, UpdateIpAllowListEntryPayload, UpdateIpAllowListForInstalledAppsEnabledSettingInput, UpdateIpAllowListForInstalledAppsEnabledSettingPayload, UpdateIssueCommentInput, UpdateIssueCommentPayload, UpdateIssueInput, UpdateIssuePayload, UpdateLabelInput, UpdateLabelPayload, UpdateNotificationRestrictionSettingInput, UpdateNotificationRestrictionSettingPayload, UpdateOrganizationAllowPrivateRepositoryForkingSettingInput, UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload, UpdateOrganizationWebCommitSignoffSettingInput, UpdateOrganizationWebCommitSignoffSettingPayload, UpdateParameters, UpdateParametersInput, UpdatePatreonSponsorabilityInput, UpdatePatreonSponsorabilityPayload, UpdateProjectCardInput, UpdateProjectCardPayload, UpdateProjectColumnInput, UpdateProjectColumnPayload, UpdateProjectInput, UpdateProjectPayload, UpdateProjectV2CollaboratorsInput, UpdateProjectV2CollaboratorsPayload, UpdateProjectV2CollaboratorsPayloadCollaboratorsArgs, UpdateProjectV2DraftIssueInput, UpdateProjectV2DraftIssuePayload, UpdateProjectV2Input, UpdateProjectV2ItemFieldValueInput, UpdateProjectV2ItemFieldValuePayload, UpdateProjectV2ItemPositionInput, UpdateProjectV2ItemPositionPayload, UpdateProjectV2ItemPositionPayloadItemsArgs, UpdateProjectV2Payload, UpdatePullRequestBranchInput, UpdatePullRequestBranchPayload, UpdatePullRequestInput, UpdatePullRequestPayload, UpdatePullRequestReviewCommentInput, UpdatePullRequestReviewCommentPayload, UpdatePullRequestReviewInput, UpdatePullRequestReviewPayload, UpdateRefInput, UpdateRefPayload, UpdateRefsInput, UpdateRefsPayload, UpdateRepositoryInput, UpdateRepositoryPayload, UpdateRepositoryRulesetInput, UpdateRepositoryRulesetPayload, UpdateRepositoryWebCommitSignoffSettingInput, UpdateRepositoryWebCommitSignoffSettingPayload, UpdateSponsorshipPreferencesInput, UpdateSponsorshipPreferencesPayload, UpdateSubscriptionInput, UpdateSubscriptionPayload, UpdateTeamDiscussionCommentInput, UpdateTeamDiscussionCommentPayload, UpdateTeamDiscussionInput, UpdateTeamDiscussionPayload, UpdateTeamReviewAssignmentInput, UpdateTeamReviewAssignmentPayload, UpdateTeamsRepositoryInput, UpdateTeamsRepositoryPayload, UpdateTopicsInput, UpdateTopicsPayload, UpdateUserListInput, UpdateUserListPayload, UpdateUserListsForItemInput, UpdateUserListsForItemPayload, User, UserAnyPinnableItemsArgs, UserAvatarUrlArgs, UserBlockDuration, UserBlockedEvent, UserCanReceiveOrganizationEmailsWhenNotificationsRestrictedArgs, UserCommitCommentsArgs, UserConnection, UserContentEdit, UserContentEditConnection, UserContentEditEdge, UserContributionsCollectionArgs, UserEdge, UserEmailMetadata, UserEnterprisesArgs, UserFollowersArgs, UserFollowingArgs, UserGistArgs, UserGistCommentsArgs, UserGistsArgs, UserHovercardArgs, UserIsSponsoredByArgs, UserIssueCommentsArgs, UserIssuesArgs, UserLifetimeReceivedSponsorshipValuesArgs, UserList, UserListConnection, UserListEdge, UserListItems, UserListItemsArgs, UserListItemsConnection, UserListItemsEdge, UserListSuggestion, UserListsArgs, UserOrganizationArgs, UserOrganizationVerifiedDomainEmailsArgs, UserOrganizationsArgs, UserPackagesArgs, UserPinnableItemsArgs, UserPinnedItemsArgs, UserProjectArgs, UserProjectV2Args, UserProjectsArgs, UserProjectsV2Args, UserPublicKeysArgs, UserPullRequestsArgs, UserRecentProjectsArgs, UserRepositoriesArgs, UserRepositoriesContributedToArgs, UserRepositoryArgs, UserRepositoryDiscussionCommentsArgs, UserRepositoryDiscussionsArgs, UserSavedRepliesArgs, UserSocialAccountsArgs, UserSponsoringArgs, UserSponsorsActivitiesArgs, UserSponsorsArgs, UserSponsorshipForViewerAsSponsorArgs, UserSponsorshipForViewerAsSponsorableArgs, UserSponsorshipNewslettersArgs, UserSponsorshipsAsMaintainerArgs, UserSponsorshipsAsSponsorArgs, UserStarredRepositoriesArgs, UserStatus, UserStatusConnection, UserStatusEdge, UserStatusOrder, UserStatusOrderField, UserTopRepositoriesArgs, UserTotalSponsorshipAmountAsSponsorInCentsArgs, UserWatchingArgs, VerifiableDomain, VerifiableDomainConnection, VerifiableDomainEdge, VerifiableDomainOrder, VerifiableDomainOrderField, VerifiableDomainOwner, VerifyVerifiableDomainInput, VerifyVerifiableDomainPayload, ViewerHovercardContext, Votable, Workflow, WorkflowFileReference, WorkflowFileReferenceInput, WorkflowRun, WorkflowRunConnection, WorkflowRunDeploymentReviewsArgs, WorkflowRunEdge, WorkflowRunFile, WorkflowRunOrder, WorkflowRunOrderField, WorkflowRunPendingDeploymentRequestsArgs, WorkflowRunsArgs, WorkflowState, WorkflowsParameters, WorkflowsParametersInput };
|