github-schema 1.13.0 → 1.14.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 +374 -87
- package/dist/github-schema.d.ts +374 -87
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +205 -90
- package/package.json +10 -10
package/dist/github-schema.d.cts
CHANGED
|
@@ -736,15 +736,24 @@ type AddedToProjectEvent = Node & {
|
|
|
736
736
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
737
737
|
/** Identifies the date and time when the object was created. */
|
|
738
738
|
createdAt: Scalars['DateTime']['output'];
|
|
739
|
-
/**
|
|
739
|
+
/**
|
|
740
|
+
* Identifies the primary key from the database.
|
|
741
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
742
|
+
*/
|
|
740
743
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
741
744
|
/** The Node ID of the AddedToProjectEvent object */
|
|
742
745
|
id: Scalars['ID']['output'];
|
|
743
746
|
/** Project referenced by event. */
|
|
744
747
|
project?: Maybe<Project>;
|
|
745
|
-
/**
|
|
748
|
+
/**
|
|
749
|
+
* Project card referenced by this project event.
|
|
750
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
751
|
+
*/
|
|
746
752
|
projectCard?: Maybe<ProjectCard>;
|
|
747
|
-
/**
|
|
753
|
+
/**
|
|
754
|
+
* Column name referenced by this project event.
|
|
755
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
756
|
+
*/
|
|
748
757
|
projectColumnName: Scalars['String']['output'];
|
|
749
758
|
};
|
|
750
759
|
/** An announcement banner for an enterprise or organization. */
|
|
@@ -3319,7 +3328,10 @@ type ConvertedNoteToIssueEvent = Node & {
|
|
|
3319
3328
|
id: Scalars['ID']['output'];
|
|
3320
3329
|
/** Project referenced by event. */
|
|
3321
3330
|
project?: Maybe<Project>;
|
|
3322
|
-
/**
|
|
3331
|
+
/**
|
|
3332
|
+
* Project card referenced by this project event.
|
|
3333
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
3334
|
+
*/
|
|
3323
3335
|
projectCard?: Maybe<ProjectCard>;
|
|
3324
3336
|
/** Column name referenced by this project event. */
|
|
3325
3337
|
projectColumnName: Scalars['String']['output'];
|
|
@@ -4532,6 +4544,14 @@ type CrossReferencedEvent = Node & UniformResourceLocatable & {
|
|
|
4532
4544
|
/** Checks if the target will be closed when the source is merged. */
|
|
4533
4545
|
willCloseTarget: Scalars['Boolean']['output'];
|
|
4534
4546
|
};
|
|
4547
|
+
/** The Common Vulnerability Scoring System */
|
|
4548
|
+
type CvssSeverities = {
|
|
4549
|
+
__typename?: 'CvssSeverities';
|
|
4550
|
+
/** The CVSS v3 severity associated with this advisory */
|
|
4551
|
+
cvssV3?: Maybe<Cvss>;
|
|
4552
|
+
/** The CVSS v4 severity associated with this advisory */
|
|
4553
|
+
cvssV4?: Maybe<Cvss>;
|
|
4554
|
+
};
|
|
4535
4555
|
/** Autogenerated input type of DeclineTopicSuggestion */
|
|
4536
4556
|
type DeclineTopicSuggestionInput = {
|
|
4537
4557
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -5034,6 +5054,8 @@ type DependencyGraphDependency = {
|
|
|
5034
5054
|
packageManager?: Maybe<Scalars['String']['output']>;
|
|
5035
5055
|
/** The name of the package in the canonical form used by the package manager. */
|
|
5036
5056
|
packageName: Scalars['String']['output'];
|
|
5057
|
+
/** Public preview: The relationship of the dependency. Can be direct, transitive, or unknown */
|
|
5058
|
+
relationship: Scalars['String']['output'];
|
|
5037
5059
|
/** The repository containing the package */
|
|
5038
5060
|
repository?: Maybe<Repository>;
|
|
5039
5061
|
/** The dependency version requirements */
|
|
@@ -6255,8 +6277,12 @@ type Enterprise = AnnouncementBannerI & Node & {
|
|
|
6255
6277
|
rulesets?: Maybe<RepositoryRulesetConnection>;
|
|
6256
6278
|
/** The URL-friendly identifier for the enterprise. */
|
|
6257
6279
|
slug: Scalars['String']['output'];
|
|
6280
|
+
/** Identifies the date and time when the object was last updated. */
|
|
6281
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
6258
6282
|
/** The HTTP URL for this enterprise. */
|
|
6259
6283
|
url: Scalars['URI']['output'];
|
|
6284
|
+
/** A list of repositories that belong to users. Only available for enterprises with Enterprise Managed Users. */
|
|
6285
|
+
userNamespaceRepositories: UserNamespaceRepositoryConnection;
|
|
6260
6286
|
/** Is the current viewer an admin of this enterprise? */
|
|
6261
6287
|
viewerIsAdmin: Scalars['Boolean']['output'];
|
|
6262
6288
|
/** The URL of the enterprise website. */
|
|
@@ -6301,6 +6327,15 @@ type EnterpriseRulesetsArgs = {
|
|
|
6301
6327
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6302
6328
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6303
6329
|
};
|
|
6330
|
+
/** An account to manage multiple organizations with consolidated policy and billing. */
|
|
6331
|
+
type EnterpriseUserNamespaceRepositoriesArgs = {
|
|
6332
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6333
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
6334
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6335
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6336
|
+
orderBy?: InputMaybe<RepositoryOrder>;
|
|
6337
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
6338
|
+
};
|
|
6304
6339
|
/** The connection type for User. */
|
|
6305
6340
|
type EnterpriseAdministratorConnection = {
|
|
6306
6341
|
__typename?: 'EnterpriseAdministratorConnection';
|
|
@@ -10680,17 +10715,29 @@ type MovedColumnsInProjectEvent = Node & {
|
|
|
10680
10715
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
10681
10716
|
/** Identifies the date and time when the object was created. */
|
|
10682
10717
|
createdAt: Scalars['DateTime']['output'];
|
|
10683
|
-
/**
|
|
10718
|
+
/**
|
|
10719
|
+
* Identifies the primary key from the database.
|
|
10720
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10721
|
+
*/
|
|
10684
10722
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
10685
10723
|
/** The Node ID of the MovedColumnsInProjectEvent object */
|
|
10686
10724
|
id: Scalars['ID']['output'];
|
|
10687
|
-
/**
|
|
10725
|
+
/**
|
|
10726
|
+
* Column name the issue or pull request was moved from.
|
|
10727
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10728
|
+
*/
|
|
10688
10729
|
previousProjectColumnName: Scalars['String']['output'];
|
|
10689
10730
|
/** Project referenced by event. */
|
|
10690
10731
|
project?: Maybe<Project>;
|
|
10691
|
-
/**
|
|
10732
|
+
/**
|
|
10733
|
+
* Project card referenced by this project event.
|
|
10734
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10735
|
+
*/
|
|
10692
10736
|
projectCard?: Maybe<ProjectCard>;
|
|
10693
|
-
/**
|
|
10737
|
+
/**
|
|
10738
|
+
* Column name the issue or pull request was moved to.
|
|
10739
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10740
|
+
*/
|
|
10694
10741
|
projectColumnName: Scalars['String']['output'];
|
|
10695
10742
|
};
|
|
10696
10743
|
/** The root query for implementing GraphQL mutations. */
|
|
@@ -10722,9 +10769,15 @@ type Mutation = {
|
|
|
10722
10769
|
addEnterpriseSupportEntitlement?: Maybe<AddEnterpriseSupportEntitlementPayload>;
|
|
10723
10770
|
/** Adds labels to a labelable object. */
|
|
10724
10771
|
addLabelsToLabelable?: Maybe<AddLabelsToLabelablePayload>;
|
|
10725
|
-
/**
|
|
10772
|
+
/**
|
|
10773
|
+
* Adds a card to a ProjectColumn. Either `contentId` or `note` must be provided but **not** both.
|
|
10774
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10775
|
+
*/
|
|
10726
10776
|
addProjectCard?: Maybe<AddProjectCardPayload>;
|
|
10727
|
-
/**
|
|
10777
|
+
/**
|
|
10778
|
+
* Adds a column to a Project.
|
|
10779
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10780
|
+
*/
|
|
10728
10781
|
addProjectColumn?: Maybe<AddProjectColumnPayload>;
|
|
10729
10782
|
/** Creates a new draft issue and add it to a Project. */
|
|
10730
10783
|
addProjectV2DraftIssue?: Maybe<AddProjectV2DraftIssuePayload>;
|
|
@@ -10772,7 +10825,10 @@ type Mutation = {
|
|
|
10772
10825
|
* milestone fields are supported.
|
|
10773
10826
|
*/
|
|
10774
10827
|
clearProjectV2ItemFieldValue?: Maybe<ClearProjectV2ItemFieldValuePayload>;
|
|
10775
|
-
/**
|
|
10828
|
+
/**
|
|
10829
|
+
* Creates a new project by cloning configuration from an existing project.
|
|
10830
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10831
|
+
*/
|
|
10776
10832
|
cloneProject?: Maybe<CloneProjectPayload>;
|
|
10777
10833
|
/** Create a new repository with the same files and directory structure as a template repository. */
|
|
10778
10834
|
cloneTemplateRepository?: Maybe<CloneTemplateRepositoryPayload>;
|
|
@@ -10782,7 +10838,10 @@ type Mutation = {
|
|
|
10782
10838
|
closeIssue?: Maybe<CloseIssuePayload>;
|
|
10783
10839
|
/** Close a pull request. */
|
|
10784
10840
|
closePullRequest?: Maybe<ClosePullRequestPayload>;
|
|
10785
|
-
/**
|
|
10841
|
+
/**
|
|
10842
|
+
* Convert a project note card to one associated with a newly created issue.
|
|
10843
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10844
|
+
*/
|
|
10786
10845
|
convertProjectCardNoteToIssue?: Maybe<ConvertProjectCardNoteToIssuePayload>;
|
|
10787
10846
|
/** Converts a projectV2 draft issue item to an issue. */
|
|
10788
10847
|
convertProjectV2DraftIssueItemToIssue?: Maybe<ConvertProjectV2DraftIssueItemToIssuePayload>;
|
|
@@ -10870,7 +10929,10 @@ type Mutation = {
|
|
|
10870
10929
|
createLinkedBranch?: Maybe<CreateLinkedBranchPayload>;
|
|
10871
10930
|
/** Creates a GitHub Enterprise Importer (GEI) migration source. */
|
|
10872
10931
|
createMigrationSource?: Maybe<CreateMigrationSourcePayload>;
|
|
10873
|
-
/**
|
|
10932
|
+
/**
|
|
10933
|
+
* Creates a new project.
|
|
10934
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10935
|
+
*/
|
|
10874
10936
|
createProject?: Maybe<CreateProjectPayload>;
|
|
10875
10937
|
/** Creates a new project. */
|
|
10876
10938
|
createProjectV2?: Maybe<CreateProjectV2Payload>;
|
|
@@ -10927,11 +10989,20 @@ type Mutation = {
|
|
|
10927
10989
|
deleteLinkedBranch?: Maybe<DeleteLinkedBranchPayload>;
|
|
10928
10990
|
/** Delete a package version. */
|
|
10929
10991
|
deletePackageVersion?: Maybe<DeletePackageVersionPayload>;
|
|
10930
|
-
/**
|
|
10992
|
+
/**
|
|
10993
|
+
* Deletes a project.
|
|
10994
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
10995
|
+
*/
|
|
10931
10996
|
deleteProject?: Maybe<DeleteProjectPayload>;
|
|
10932
|
-
/**
|
|
10997
|
+
/**
|
|
10998
|
+
* Deletes a project card.
|
|
10999
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11000
|
+
*/
|
|
10933
11001
|
deleteProjectCard?: Maybe<DeleteProjectCardPayload>;
|
|
10934
|
-
/**
|
|
11002
|
+
/**
|
|
11003
|
+
* Deletes a project column.
|
|
11004
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11005
|
+
*/
|
|
10935
11006
|
deleteProjectColumn?: Maybe<DeleteProjectColumnPayload>;
|
|
10936
11007
|
/** Delete a project. */
|
|
10937
11008
|
deleteProjectV2?: Maybe<DeleteProjectV2Payload>;
|
|
@@ -10979,7 +11050,10 @@ type Mutation = {
|
|
|
10979
11050
|
grantEnterpriseOrganizationsMigratorRole?: Maybe<GrantEnterpriseOrganizationsMigratorRolePayload>;
|
|
10980
11051
|
/** Grant the migrator role to a user or a team. */
|
|
10981
11052
|
grantMigratorRole?: Maybe<GrantMigratorRolePayload>;
|
|
10982
|
-
/**
|
|
11053
|
+
/**
|
|
11054
|
+
* Creates a new project by importing columns and a list of issues/PRs.
|
|
11055
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11056
|
+
*/
|
|
10983
11057
|
importProject?: Maybe<ImportProjectPayload>;
|
|
10984
11058
|
/** Invite someone to become an administrator of the enterprise. */
|
|
10985
11059
|
inviteEnterpriseAdmin?: Maybe<InviteEnterpriseAdminPayload>;
|
|
@@ -10989,7 +11063,10 @@ type Mutation = {
|
|
|
10989
11063
|
linkProjectV2ToRepository?: Maybe<LinkProjectV2ToRepositoryPayload>;
|
|
10990
11064
|
/** Links a project to a team. */
|
|
10991
11065
|
linkProjectV2ToTeam?: Maybe<LinkProjectV2ToTeamPayload>;
|
|
10992
|
-
/**
|
|
11066
|
+
/**
|
|
11067
|
+
* Creates a repository link for a project.
|
|
11068
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11069
|
+
*/
|
|
10993
11070
|
linkRepositoryToProject?: Maybe<LinkRepositoryToProjectPayload>;
|
|
10994
11071
|
/** Lock a lockable object */
|
|
10995
11072
|
lockLockable?: Maybe<LockLockablePayload>;
|
|
@@ -11007,9 +11084,15 @@ type Mutation = {
|
|
|
11007
11084
|
mergePullRequest?: Maybe<MergePullRequestPayload>;
|
|
11008
11085
|
/** Minimizes a comment on an Issue, Commit, Pull Request, or Gist */
|
|
11009
11086
|
minimizeComment?: Maybe<MinimizeCommentPayload>;
|
|
11010
|
-
/**
|
|
11087
|
+
/**
|
|
11088
|
+
* Moves a project card to another place.
|
|
11089
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11090
|
+
*/
|
|
11011
11091
|
moveProjectCard?: Maybe<MoveProjectCardPayload>;
|
|
11012
|
-
/**
|
|
11092
|
+
/**
|
|
11093
|
+
* Moves a project column to another place.
|
|
11094
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11095
|
+
*/
|
|
11013
11096
|
moveProjectColumn?: Maybe<MoveProjectColumnPayload>;
|
|
11014
11097
|
/** Pin an environment to a repository */
|
|
11015
11098
|
pinEnvironment?: Maybe<PinEnvironmentPayload>;
|
|
@@ -11104,7 +11187,10 @@ type Mutation = {
|
|
|
11104
11187
|
unlinkProjectV2FromRepository?: Maybe<UnlinkProjectV2FromRepositoryPayload>;
|
|
11105
11188
|
/** Unlinks a project to a team. */
|
|
11106
11189
|
unlinkProjectV2FromTeam?: Maybe<UnlinkProjectV2FromTeamPayload>;
|
|
11107
|
-
/**
|
|
11190
|
+
/**
|
|
11191
|
+
* Deletes a repository link from a project.
|
|
11192
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11193
|
+
*/
|
|
11108
11194
|
unlinkRepositoryFromProject?: Maybe<UnlinkRepositoryFromProjectPayload>;
|
|
11109
11195
|
/** Unlock a lockable object */
|
|
11110
11196
|
unlockLockable?: Maybe<UnlockLockablePayload>;
|
|
@@ -11197,11 +11283,20 @@ type Mutation = {
|
|
|
11197
11283
|
* your GitHub account with Patreon.
|
|
11198
11284
|
*/
|
|
11199
11285
|
updatePatreonSponsorability?: Maybe<UpdatePatreonSponsorabilityPayload>;
|
|
11200
|
-
/**
|
|
11286
|
+
/**
|
|
11287
|
+
* Updates an existing project.
|
|
11288
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11289
|
+
*/
|
|
11201
11290
|
updateProject?: Maybe<UpdateProjectPayload>;
|
|
11202
|
-
/**
|
|
11291
|
+
/**
|
|
11292
|
+
* Updates an existing project card.
|
|
11293
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11294
|
+
*/
|
|
11203
11295
|
updateProjectCard?: Maybe<UpdateProjectCardPayload>;
|
|
11204
|
-
/**
|
|
11296
|
+
/**
|
|
11297
|
+
* Updates an existing project column.
|
|
11298
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
11299
|
+
*/
|
|
11205
11300
|
updateProjectColumn?: Maybe<UpdateProjectColumnPayload>;
|
|
11206
11301
|
/** Updates an existing project. */
|
|
11207
11302
|
updateProjectV2?: Maybe<UpdateProjectV2Payload>;
|
|
@@ -13921,11 +14016,17 @@ type Organization = Actor & AnnouncementBannerI & MemberStatusable & Node & Pack
|
|
|
13921
14016
|
pinnedItems: PinnableItemConnection;
|
|
13922
14017
|
/** Returns how many more items this profile owner can pin to their profile. */
|
|
13923
14018
|
pinnedItemsRemaining: Scalars['Int']['output'];
|
|
13924
|
-
/**
|
|
14019
|
+
/**
|
|
14020
|
+
* Find project by number.
|
|
14021
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
14022
|
+
*/
|
|
13925
14023
|
project?: Maybe<Project>;
|
|
13926
14024
|
/** Find a project by number. */
|
|
13927
14025
|
projectV2?: Maybe<ProjectV2>;
|
|
13928
|
-
/**
|
|
14026
|
+
/**
|
|
14027
|
+
* A list of projects under the owner.
|
|
14028
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
14029
|
+
*/
|
|
13929
14030
|
projects: ProjectConnection;
|
|
13930
14031
|
/** The HTTP path listing organization's projects */
|
|
13931
14032
|
projectsResourcePath: Scalars['URI']['output'];
|
|
@@ -15385,41 +15486,89 @@ type ProfileOwnerPinnedItemsArgs = {
|
|
|
15385
15486
|
/** Projects manage issues, pull requests and notes within a project owner. */
|
|
15386
15487
|
type Project = Closable & Node & Updatable & {
|
|
15387
15488
|
__typename?: 'Project';
|
|
15388
|
-
/**
|
|
15489
|
+
/**
|
|
15490
|
+
* The project's description body.
|
|
15491
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15492
|
+
*/
|
|
15389
15493
|
body?: Maybe<Scalars['String']['output']>;
|
|
15390
|
-
/**
|
|
15494
|
+
/**
|
|
15495
|
+
* The projects description body rendered to HTML.
|
|
15496
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15497
|
+
*/
|
|
15391
15498
|
bodyHTML: Scalars['HTML']['output'];
|
|
15392
15499
|
/** Indicates if the object is closed (definition of closed may depend on type) */
|
|
15393
15500
|
closed: Scalars['Boolean']['output'];
|
|
15394
15501
|
/** Identifies the date and time when the object was closed. */
|
|
15395
15502
|
closedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
15396
|
-
/**
|
|
15503
|
+
/**
|
|
15504
|
+
* List of columns in the project
|
|
15505
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15506
|
+
*/
|
|
15397
15507
|
columns: ProjectColumnConnection;
|
|
15398
|
-
/**
|
|
15508
|
+
/**
|
|
15509
|
+
* Identifies the date and time when the object was created.
|
|
15510
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15511
|
+
*/
|
|
15399
15512
|
createdAt: Scalars['DateTime']['output'];
|
|
15400
|
-
/**
|
|
15513
|
+
/**
|
|
15514
|
+
* The actor who originally created the project.
|
|
15515
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15516
|
+
*/
|
|
15401
15517
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
15402
|
-
/**
|
|
15518
|
+
/**
|
|
15519
|
+
* Identifies the primary key from the database.
|
|
15520
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15521
|
+
*/
|
|
15403
15522
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15404
|
-
/**
|
|
15523
|
+
/**
|
|
15524
|
+
* The Node ID of the Project object
|
|
15525
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15526
|
+
*/
|
|
15405
15527
|
id: Scalars['ID']['output'];
|
|
15406
|
-
/**
|
|
15528
|
+
/**
|
|
15529
|
+
* The project's name.
|
|
15530
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15531
|
+
*/
|
|
15407
15532
|
name: Scalars['String']['output'];
|
|
15408
|
-
/**
|
|
15533
|
+
/**
|
|
15534
|
+
* The project's number.
|
|
15535
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15536
|
+
*/
|
|
15409
15537
|
number: Scalars['Int']['output'];
|
|
15410
|
-
/**
|
|
15538
|
+
/**
|
|
15539
|
+
* The project's owner. Currently limited to repositories, organizations, and users.
|
|
15540
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15541
|
+
*/
|
|
15411
15542
|
owner: Organization | Repository | User;
|
|
15412
|
-
/**
|
|
15543
|
+
/**
|
|
15544
|
+
* List of pending cards in this project
|
|
15545
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15546
|
+
*/
|
|
15413
15547
|
pendingCards: ProjectCardConnection;
|
|
15414
|
-
/**
|
|
15548
|
+
/**
|
|
15549
|
+
* Project progress details.
|
|
15550
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15551
|
+
*/
|
|
15415
15552
|
progress: ProjectProgress;
|
|
15416
|
-
/**
|
|
15553
|
+
/**
|
|
15554
|
+
* The HTTP path for this project
|
|
15555
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15556
|
+
*/
|
|
15417
15557
|
resourcePath: Scalars['URI']['output'];
|
|
15418
|
-
/**
|
|
15558
|
+
/**
|
|
15559
|
+
* Whether the project is open or closed.
|
|
15560
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15561
|
+
*/
|
|
15419
15562
|
state: ProjectState;
|
|
15420
|
-
/**
|
|
15563
|
+
/**
|
|
15564
|
+
* Identifies the date and time when the object was last updated.
|
|
15565
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15566
|
+
*/
|
|
15421
15567
|
updatedAt: Scalars['DateTime']['output'];
|
|
15422
|
-
/**
|
|
15568
|
+
/**
|
|
15569
|
+
* The HTTP URL for this project
|
|
15570
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15571
|
+
*/
|
|
15423
15572
|
url: Scalars['URI']['output'];
|
|
15424
15573
|
/** Indicates if the object can be closed by the viewer. */
|
|
15425
15574
|
viewerCanClose: Scalars['Boolean']['output'];
|
|
@@ -15451,31 +15600,68 @@ type ProjectCard = Node & {
|
|
|
15451
15600
|
* project column at a time. The column field will be null if the card is created
|
|
15452
15601
|
* in a pending state and has yet to be associated with a column. Once cards are
|
|
15453
15602
|
* associated with a column, they will not become pending in the future.
|
|
15603
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15454
15604
|
*/
|
|
15455
15605
|
column?: Maybe<ProjectColumn>;
|
|
15456
|
-
/**
|
|
15606
|
+
/**
|
|
15607
|
+
* The card content item
|
|
15608
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15609
|
+
*/
|
|
15457
15610
|
content?: Maybe<ProjectCardItem>;
|
|
15458
|
-
/**
|
|
15611
|
+
/**
|
|
15612
|
+
* Identifies the date and time when the object was created.
|
|
15613
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15614
|
+
*/
|
|
15459
15615
|
createdAt: Scalars['DateTime']['output'];
|
|
15460
|
-
/**
|
|
15616
|
+
/**
|
|
15617
|
+
* The actor who created this card
|
|
15618
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15619
|
+
*/
|
|
15461
15620
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
15462
|
-
/**
|
|
15621
|
+
/**
|
|
15622
|
+
* Identifies the primary key from the database.
|
|
15623
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15624
|
+
*/
|
|
15463
15625
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15464
|
-
/**
|
|
15626
|
+
/**
|
|
15627
|
+
* The Node ID of the ProjectCard object
|
|
15628
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15629
|
+
*/
|
|
15465
15630
|
id: Scalars['ID']['output'];
|
|
15466
|
-
/**
|
|
15631
|
+
/**
|
|
15632
|
+
* Whether the card is archived
|
|
15633
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15634
|
+
*/
|
|
15467
15635
|
isArchived: Scalars['Boolean']['output'];
|
|
15468
|
-
/**
|
|
15636
|
+
/**
|
|
15637
|
+
* The card note
|
|
15638
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15639
|
+
*/
|
|
15469
15640
|
note?: Maybe<Scalars['String']['output']>;
|
|
15470
|
-
/**
|
|
15641
|
+
/**
|
|
15642
|
+
* The project that contains this card.
|
|
15643
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15644
|
+
*/
|
|
15471
15645
|
project: Project;
|
|
15472
|
-
/**
|
|
15646
|
+
/**
|
|
15647
|
+
* The HTTP path for this card
|
|
15648
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15649
|
+
*/
|
|
15473
15650
|
resourcePath: Scalars['URI']['output'];
|
|
15474
|
-
/**
|
|
15651
|
+
/**
|
|
15652
|
+
* The state of ProjectCard
|
|
15653
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15654
|
+
*/
|
|
15475
15655
|
state?: Maybe<ProjectCardState>;
|
|
15476
|
-
/**
|
|
15656
|
+
/**
|
|
15657
|
+
* Identifies the date and time when the object was last updated.
|
|
15658
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15659
|
+
*/
|
|
15477
15660
|
updatedAt: Scalars['DateTime']['output'];
|
|
15478
|
-
/**
|
|
15661
|
+
/**
|
|
15662
|
+
* The HTTP URL for this card
|
|
15663
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15664
|
+
*/
|
|
15479
15665
|
url: Scalars['URI']['output'];
|
|
15480
15666
|
};
|
|
15481
15667
|
/** The possible archived states of a project card. */
|
|
@@ -15524,25 +15710,55 @@ type ProjectCardState =
|
|
|
15524
15710
|
/** A column inside a project. */
|
|
15525
15711
|
type ProjectColumn = Node & {
|
|
15526
15712
|
__typename?: 'ProjectColumn';
|
|
15527
|
-
/**
|
|
15713
|
+
/**
|
|
15714
|
+
* List of cards in the column
|
|
15715
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15716
|
+
*/
|
|
15528
15717
|
cards: ProjectCardConnection;
|
|
15529
|
-
/**
|
|
15718
|
+
/**
|
|
15719
|
+
* Identifies the date and time when the object was created.
|
|
15720
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15721
|
+
*/
|
|
15530
15722
|
createdAt: Scalars['DateTime']['output'];
|
|
15531
|
-
/**
|
|
15723
|
+
/**
|
|
15724
|
+
* Identifies the primary key from the database.
|
|
15725
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15726
|
+
*/
|
|
15532
15727
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15533
|
-
/**
|
|
15728
|
+
/**
|
|
15729
|
+
* The Node ID of the ProjectColumn object
|
|
15730
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15731
|
+
*/
|
|
15534
15732
|
id: Scalars['ID']['output'];
|
|
15535
|
-
/**
|
|
15733
|
+
/**
|
|
15734
|
+
* The project column's name.
|
|
15735
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15736
|
+
*/
|
|
15536
15737
|
name: Scalars['String']['output'];
|
|
15537
|
-
/**
|
|
15738
|
+
/**
|
|
15739
|
+
* The project that contains this column.
|
|
15740
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15741
|
+
*/
|
|
15538
15742
|
project: Project;
|
|
15539
|
-
/**
|
|
15743
|
+
/**
|
|
15744
|
+
* The semantic purpose of the column
|
|
15745
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15746
|
+
*/
|
|
15540
15747
|
purpose?: Maybe<ProjectColumnPurpose>;
|
|
15541
|
-
/**
|
|
15748
|
+
/**
|
|
15749
|
+
* The HTTP path for this project column
|
|
15750
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15751
|
+
*/
|
|
15542
15752
|
resourcePath: Scalars['URI']['output'];
|
|
15543
|
-
/**
|
|
15753
|
+
/**
|
|
15754
|
+
* Identifies the date and time when the object was last updated.
|
|
15755
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15756
|
+
*/
|
|
15544
15757
|
updatedAt: Scalars['DateTime']['output'];
|
|
15545
|
-
/**
|
|
15758
|
+
/**
|
|
15759
|
+
* The HTTP URL for this project column
|
|
15760
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15761
|
+
*/
|
|
15546
15762
|
url: Scalars['URI']['output'];
|
|
15547
15763
|
};
|
|
15548
15764
|
/** A column inside a project. */
|
|
@@ -15629,9 +15845,15 @@ type ProjectOrderField =
|
|
|
15629
15845
|
type ProjectOwner = {
|
|
15630
15846
|
/** The Node ID of the ProjectOwner object */
|
|
15631
15847
|
id: Scalars['ID']['output'];
|
|
15632
|
-
/**
|
|
15848
|
+
/**
|
|
15849
|
+
* Find project by number.
|
|
15850
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15851
|
+
*/
|
|
15633
15852
|
project?: Maybe<Project>;
|
|
15634
|
-
/**
|
|
15853
|
+
/**
|
|
15854
|
+
* A list of projects under the owner.
|
|
15855
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15856
|
+
*/
|
|
15635
15857
|
projects: ProjectConnection;
|
|
15636
15858
|
/** The HTTP path listing owners projects */
|
|
15637
15859
|
projectsResourcePath: Scalars['URI']['output'];
|
|
@@ -15657,19 +15879,40 @@ type ProjectOwnerProjectsArgs = {
|
|
|
15657
15879
|
/** Project progress stats. */
|
|
15658
15880
|
type ProjectProgress = {
|
|
15659
15881
|
__typename?: 'ProjectProgress';
|
|
15660
|
-
/**
|
|
15882
|
+
/**
|
|
15883
|
+
* The number of done cards.
|
|
15884
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15885
|
+
*/
|
|
15661
15886
|
doneCount: Scalars['Int']['output'];
|
|
15662
|
-
/**
|
|
15887
|
+
/**
|
|
15888
|
+
* The percentage of done cards.
|
|
15889
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15890
|
+
*/
|
|
15663
15891
|
donePercentage: Scalars['Float']['output'];
|
|
15664
|
-
/**
|
|
15892
|
+
/**
|
|
15893
|
+
* Whether progress tracking is enabled and cards with purpose exist for this project
|
|
15894
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15895
|
+
*/
|
|
15665
15896
|
enabled: Scalars['Boolean']['output'];
|
|
15666
|
-
/**
|
|
15897
|
+
/**
|
|
15898
|
+
* The number of in-progress cards.
|
|
15899
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15900
|
+
*/
|
|
15667
15901
|
inProgressCount: Scalars['Int']['output'];
|
|
15668
|
-
/**
|
|
15902
|
+
/**
|
|
15903
|
+
* The percentage of in-progress cards.
|
|
15904
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15905
|
+
*/
|
|
15669
15906
|
inProgressPercentage: Scalars['Float']['output'];
|
|
15670
|
-
/**
|
|
15907
|
+
/**
|
|
15908
|
+
* The number of to do cards.
|
|
15909
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15910
|
+
*/
|
|
15671
15911
|
todoCount: Scalars['Int']['output'];
|
|
15672
|
-
/**
|
|
15912
|
+
/**
|
|
15913
|
+
* The percentage of to do cards.
|
|
15914
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
15915
|
+
*/
|
|
15673
15916
|
todoPercentage: Scalars['Float']['output'];
|
|
15674
15917
|
};
|
|
15675
15918
|
/** State of the project; either 'open' or 'closed' */
|
|
@@ -15992,12 +16235,16 @@ type ProjectV2FieldType =
|
|
|
15992
16235
|
| 'MILESTONE'
|
|
15993
16236
|
/** Number */
|
|
15994
16237
|
| 'NUMBER'
|
|
16238
|
+
/** Parent issue */
|
|
16239
|
+
| 'PARENT_ISSUE'
|
|
15995
16240
|
/** Repository */
|
|
15996
16241
|
| 'REPOSITORY'
|
|
15997
16242
|
/** Reviewers */
|
|
15998
16243
|
| 'REVIEWERS'
|
|
15999
16244
|
/** Single Select */
|
|
16000
16245
|
| 'SINGLE_SELECT'
|
|
16246
|
+
/** Sub-issues progress */
|
|
16247
|
+
| 'SUB_ISSUES_PROGRESS'
|
|
16001
16248
|
/** Text */
|
|
16002
16249
|
| 'TEXT'
|
|
16003
16250
|
/** Title */
|
|
@@ -19315,13 +19562,19 @@ type RemovedFromProjectEvent = Node & {
|
|
|
19315
19562
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
19316
19563
|
/** Identifies the date and time when the object was created. */
|
|
19317
19564
|
createdAt: Scalars['DateTime']['output'];
|
|
19318
|
-
/**
|
|
19565
|
+
/**
|
|
19566
|
+
* Identifies the primary key from the database.
|
|
19567
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
19568
|
+
*/
|
|
19319
19569
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
19320
19570
|
/** The Node ID of the RemovedFromProjectEvent object */
|
|
19321
19571
|
id: Scalars['ID']['output'];
|
|
19322
19572
|
/** Project referenced by event. */
|
|
19323
19573
|
project?: Maybe<Project>;
|
|
19324
|
-
/**
|
|
19574
|
+
/**
|
|
19575
|
+
* Column name referenced by this project event.
|
|
19576
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
19577
|
+
*/
|
|
19325
19578
|
projectColumnName: Scalars['String']['output'];
|
|
19326
19579
|
};
|
|
19327
19580
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
@@ -19470,7 +19723,7 @@ type RepoAccessAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
|
|
|
19470
19723
|
};
|
|
19471
19724
|
/** The privacy of a repository */
|
|
19472
19725
|
type RepoAccessAuditEntryVisibility =
|
|
19473
|
-
/** The repository is visible only to users in the same
|
|
19726
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
19474
19727
|
'INTERNAL'
|
|
19475
19728
|
/** The repository is visible only to those with explicit access. */
|
|
19476
19729
|
| 'PRIVATE'
|
|
@@ -19528,7 +19781,7 @@ type RepoAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
19528
19781
|
};
|
|
19529
19782
|
/** The privacy of a repository */
|
|
19530
19783
|
type RepoAddMemberAuditEntryVisibility =
|
|
19531
|
-
/** The repository is visible only to users in the same
|
|
19784
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
19532
19785
|
'INTERNAL'
|
|
19533
19786
|
/** The repository is visible only to those with explicit access. */
|
|
19534
19787
|
| 'PRIVATE'
|
|
@@ -19638,7 +19891,7 @@ type RepoArchivedAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & R
|
|
|
19638
19891
|
};
|
|
19639
19892
|
/** The privacy of a repository */
|
|
19640
19893
|
type RepoArchivedAuditEntryVisibility =
|
|
19641
|
-
/** The repository is visible only to users in the same
|
|
19894
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
19642
19895
|
'INTERNAL'
|
|
19643
19896
|
/** The repository is visible only to those with explicit access. */
|
|
19644
19897
|
| 'PRIVATE'
|
|
@@ -20240,7 +20493,7 @@ type RepoCreateAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
|
|
|
20240
20493
|
};
|
|
20241
20494
|
/** The privacy of a repository */
|
|
20242
20495
|
type RepoCreateAuditEntryVisibility =
|
|
20243
|
-
/** The repository is visible only to users in the same
|
|
20496
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
20244
20497
|
'INTERNAL'
|
|
20245
20498
|
/** The repository is visible only to those with explicit access. */
|
|
20246
20499
|
| 'PRIVATE'
|
|
@@ -20298,7 +20551,7 @@ type RepoDestroyAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Re
|
|
|
20298
20551
|
};
|
|
20299
20552
|
/** The privacy of a repository */
|
|
20300
20553
|
type RepoDestroyAuditEntryVisibility =
|
|
20301
|
-
/** The repository is visible only to users in the same
|
|
20554
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
20302
20555
|
'INTERNAL'
|
|
20303
20556
|
/** The repository is visible only to those with explicit access. */
|
|
20304
20557
|
| 'PRIVATE'
|
|
@@ -20356,7 +20609,7 @@ type RepoRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
20356
20609
|
};
|
|
20357
20610
|
/** The privacy of a repository */
|
|
20358
20611
|
type RepoRemoveMemberAuditEntryVisibility =
|
|
20359
|
-
/** The repository is visible only to users in the same
|
|
20612
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
20360
20613
|
'INTERNAL'
|
|
20361
20614
|
/** The repository is visible only to those with explicit access. */
|
|
20362
20615
|
| 'PRIVATE'
|
|
@@ -20598,11 +20851,17 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
20598
20851
|
planFeatures: RepositoryPlanFeatures;
|
|
20599
20852
|
/** The primary language of the repository's code. */
|
|
20600
20853
|
primaryLanguage?: Maybe<Language>;
|
|
20601
|
-
/**
|
|
20854
|
+
/**
|
|
20855
|
+
* Find project by number.
|
|
20856
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
20857
|
+
*/
|
|
20602
20858
|
project?: Maybe<Project>;
|
|
20603
20859
|
/** Finds and returns the Project according to the provided Project number. */
|
|
20604
20860
|
projectV2?: Maybe<ProjectV2>;
|
|
20605
|
-
/**
|
|
20861
|
+
/**
|
|
20862
|
+
* A list of projects under the owner.
|
|
20863
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
20864
|
+
*/
|
|
20606
20865
|
projects: ProjectConnection;
|
|
20607
20866
|
/** The HTTP path listing the repository's projects */
|
|
20608
20867
|
projectsResourcePath: Scalars['URI']['output'];
|
|
@@ -21928,7 +22187,7 @@ type RepositoryTopicEdge = {
|
|
|
21928
22187
|
};
|
|
21929
22188
|
/** The repository's visibility level. */
|
|
21930
22189
|
type RepositoryVisibility =
|
|
21931
|
-
/** The repository is visible only to users in the same
|
|
22190
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
21932
22191
|
'INTERNAL'
|
|
21933
22192
|
/** The repository is visible only to those with explicit access. */
|
|
21934
22193
|
| 'PRIVATE'
|
|
@@ -22726,6 +22985,8 @@ type SecurityAdvisory = Node & {
|
|
|
22726
22985
|
* @deprecated `cvss` will be removed. New `cvss_severities` field will now contain both `cvss_v3` and `cvss_v4` properties. Removal on 2025-10-01 UTC.
|
|
22727
22986
|
*/
|
|
22728
22987
|
cvss: Cvss;
|
|
22988
|
+
/** The CVSS associated with this advisory */
|
|
22989
|
+
cvssSeverities: CvssSeverities;
|
|
22729
22990
|
/** CWEs associated with this Advisory */
|
|
22730
22991
|
cwes: CweConnection;
|
|
22731
22992
|
/** Identifies the primary key from the database. */
|
|
@@ -27889,11 +28150,17 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
|
|
|
27889
28150
|
pinnedItems: PinnableItemConnection;
|
|
27890
28151
|
/** Returns how many more items this profile owner can pin to their profile. */
|
|
27891
28152
|
pinnedItemsRemaining: Scalars['Int']['output'];
|
|
27892
|
-
/**
|
|
28153
|
+
/**
|
|
28154
|
+
* Find project by number.
|
|
28155
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
28156
|
+
*/
|
|
27893
28157
|
project?: Maybe<Project>;
|
|
27894
28158
|
/** Find a project by number. */
|
|
27895
28159
|
projectV2?: Maybe<ProjectV2>;
|
|
27896
|
-
/**
|
|
28160
|
+
/**
|
|
28161
|
+
* A list of projects under the owner.
|
|
28162
|
+
* @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
|
|
28163
|
+
*/
|
|
27897
28164
|
projects: ProjectConnection;
|
|
27898
28165
|
/** The HTTP path listing user's projects */
|
|
27899
28166
|
projectsResourcePath: Scalars['URI']['output'];
|
|
@@ -28554,6 +28821,26 @@ type UserNamespaceRepository = Node & {
|
|
|
28554
28821
|
/** The repository owned by an enterprise managed user. */
|
|
28555
28822
|
repository?: Maybe<Repository>;
|
|
28556
28823
|
};
|
|
28824
|
+
/** A list of repositories owned by users in an enterprise with Enterprise Managed Users. */
|
|
28825
|
+
type UserNamespaceRepositoryConnection = {
|
|
28826
|
+
__typename?: 'UserNamespaceRepositoryConnection';
|
|
28827
|
+
/** A list of edges. */
|
|
28828
|
+
edges?: Maybe<Array<Maybe<UserNamespaceRepositoryEdge>>>;
|
|
28829
|
+
/** A list of nodes. */
|
|
28830
|
+
nodes?: Maybe<Array<Maybe<UserNamespaceRepository>>>;
|
|
28831
|
+
/** Information to aid in pagination. */
|
|
28832
|
+
pageInfo: PageInfo;
|
|
28833
|
+
/** Identifies the total count of items in the connection. */
|
|
28834
|
+
totalCount: Scalars['Int']['output'];
|
|
28835
|
+
};
|
|
28836
|
+
/** An edge in a connection. */
|
|
28837
|
+
type UserNamespaceRepositoryEdge = {
|
|
28838
|
+
__typename?: 'UserNamespaceRepositoryEdge';
|
|
28839
|
+
/** A cursor for use in pagination. */
|
|
28840
|
+
cursor: Scalars['String']['output'];
|
|
28841
|
+
/** The item at the end of the edge. */
|
|
28842
|
+
node?: Maybe<UserNamespaceRepository>;
|
|
28843
|
+
};
|
|
28557
28844
|
/** The user's description of what they're currently doing. */
|
|
28558
28845
|
type UserStatus = Node & {
|
|
28559
28846
|
__typename?: 'UserStatus';
|
|
@@ -28896,4 +29183,4 @@ type WorkflowsParametersInput = {
|
|
|
28896
29183
|
workflows: Array<WorkflowFileReferenceInput>;
|
|
28897
29184
|
};
|
|
28898
29185
|
|
|
28899
|
-
export type { AbortQueuedMigrationsInput, AbortQueuedMigrationsPayload, AbortRepositoryMigrationInput, AbortRepositoryMigrationPayload, AcceptEnterpriseAdministratorInvitationInput, AcceptEnterpriseAdministratorInvitationPayload, AcceptEnterpriseMemberInvitationInput, AcceptEnterpriseMemberInvitationPayload, AcceptTopicSuggestionInput, AcceptTopicSuggestionPayload, AccessUserNamespaceRepositoryInput, AccessUserNamespaceRepositoryPayload, 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, AddSubIssueInput, AddSubIssuePayload, AddUpvoteInput, AddUpvotePayload, AddVerifiableDomainInput, AddVerifiableDomainPayload, AddedToMergeQueueEvent, AddedToProjectEvent, AnnouncementBanner, AnnouncementBannerI, 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, ConvertProjectV2DraftIssueItemToIssueInput, ConvertProjectV2DraftIssueItemToIssuePayload, 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, CreateProjectV2StatusUpdateInput, CreateProjectV2StatusUpdatePayload, 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, DeleteProjectV2StatusUpdateInput, DeleteProjectV2StatusUpdatePayload, 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, EnterpriseDisallowedMethodsSettingValue, 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, EnterpriseOwnerInfoRepositoryDeployKeySettingOrganizationsArgs, EnterpriseOwnerInfoRepositoryProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoSamlIdentityProviderSettingOrganizationsArgs, EnterpriseOwnerInfoSupportEntitlementsArgs, EnterpriseOwnerInfoTeamDiscussionsSettingOrganizationsArgs, EnterpriseOwnerInfoTwoFactorRequiredSettingOrganizationsArgs, EnterprisePendingMemberInvitationConnection, EnterprisePendingMemberInvitationEdge, EnterpriseRepositoryInfo, EnterpriseRepositoryInfoConnection, EnterpriseRepositoryInfoEdge, EnterpriseRulesetArgs, EnterpriseRulesetsArgs, 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, Epss, 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, IssueClosedByPullRequestsReferencesArgs, 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, IssueStateReasonArgs, IssueSubIssuesArgs, 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, 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, MergeQueueGroupingStrategy, MergeQueueMergeMethod, MergeQueueMergingStrategy, MergeQueueParameters, MergeQueueParametersInput, 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, MutationAccessUserNamespaceRepositoryArgs, MutationAddAssigneesToAssignableArgs, MutationAddCommentArgs, MutationAddDiscussionCommentArgs, MutationAddDiscussionPollVoteArgs, MutationAddEnterpriseOrganizationMemberArgs, MutationAddEnterpriseSupportEntitlementArgs, MutationAddLabelsToLabelableArgs, MutationAddProjectCardArgs, MutationAddProjectColumnArgs, MutationAddProjectV2DraftIssueArgs, MutationAddProjectV2ItemByIdArgs, MutationAddPullRequestReviewArgs, MutationAddPullRequestReviewCommentArgs, MutationAddPullRequestReviewThreadArgs, MutationAddPullRequestReviewThreadReplyArgs, MutationAddReactionArgs, MutationAddStarArgs, MutationAddSubIssueArgs, MutationAddUpvoteArgs, MutationAddVerifiableDomainArgs, MutationApproveDeploymentsArgs, MutationApproveVerifiableDomainArgs, MutationArchiveProjectV2ItemArgs, MutationArchiveRepositoryArgs, MutationCancelEnterpriseAdminInvitationArgs, MutationCancelEnterpriseMemberInvitationArgs, MutationCancelSponsorshipArgs, MutationChangeUserStatusArgs, MutationClearLabelsFromLabelableArgs, MutationClearProjectV2ItemFieldValueArgs, MutationCloneProjectArgs, MutationCloneTemplateRepositoryArgs, MutationCloseDiscussionArgs, MutationCloseIssueArgs, MutationClosePullRequestArgs, MutationConvertProjectCardNoteToIssueArgs, MutationConvertProjectV2DraftIssueItemToIssueArgs, MutationConvertPullRequestToDraftArgs, MutationCopyProjectV2Args, MutationCreateAttributionInvitationArgs, MutationCreateBranchProtectionRuleArgs, MutationCreateCheckRunArgs, MutationCreateCheckSuiteArgs, MutationCreateCommitOnBranchArgs, MutationCreateDeploymentArgs, MutationCreateDeploymentStatusArgs, MutationCreateDiscussionArgs, MutationCreateEnterpriseOrganizationArgs, MutationCreateEnvironmentArgs, MutationCreateIpAllowListEntryArgs, MutationCreateIssueArgs, MutationCreateLabelArgs, MutationCreateLinkedBranchArgs, MutationCreateMigrationSourceArgs, MutationCreateProjectArgs, MutationCreateProjectV2Args, MutationCreateProjectV2FieldArgs, MutationCreateProjectV2StatusUpdateArgs, 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, MutationDeleteProjectV2StatusUpdateArgs, 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, MutationMarkProjectV2AsTemplateArgs, MutationMarkPullRequestReadyForReviewArgs, MutationMergeBranchArgs, MutationMergePullRequestArgs, MutationMinimizeCommentArgs, MutationMoveProjectCardArgs, MutationMoveProjectColumnArgs, MutationPinEnvironmentArgs, MutationPinIssueArgs, MutationPublishSponsorsTierArgs, MutationRegenerateEnterpriseIdentityProviderRecoveryCodesArgs, MutationRegenerateVerifiableDomainTokenArgs, MutationRejectDeploymentsArgs, MutationRemoveAssigneesFromAssignableArgs, MutationRemoveEnterpriseAdminArgs, MutationRemoveEnterpriseIdentityProviderArgs, MutationRemoveEnterpriseMemberArgs, MutationRemoveEnterpriseOrganizationArgs, MutationRemoveEnterpriseSupportEntitlementArgs, MutationRemoveLabelsFromLabelableArgs, MutationRemoveOutsideCollaboratorArgs, MutationRemoveReactionArgs, MutationRemoveStarArgs, MutationRemoveSubIssueArgs, MutationRemoveUpvoteArgs, MutationReopenDiscussionArgs, MutationReopenIssueArgs, MutationReopenPullRequestArgs, MutationReorderEnvironmentArgs, MutationReprioritizeSubIssueArgs, 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, MutationUpdateBranchProtectionRuleArgs, MutationUpdateCheckRunArgs, MutationUpdateCheckSuitePreferencesArgs, MutationUpdateDiscussionArgs, MutationUpdateDiscussionCommentArgs, MutationUpdateEnterpriseAdministratorRoleArgs, MutationUpdateEnterpriseAllowPrivateRepositoryForkingSettingArgs, MutationUpdateEnterpriseDefaultRepositoryPermissionSettingArgs, MutationUpdateEnterpriseDeployKeySettingArgs, MutationUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingArgs, MutationUpdateEnterpriseMembersCanCreateRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteIssuesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanInviteCollaboratorsSettingArgs, MutationUpdateEnterpriseMembersCanMakePurchasesSettingArgs, MutationUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingArgs, MutationUpdateEnterpriseMembersCanViewDependencyInsightsSettingArgs, MutationUpdateEnterpriseOrganizationProjectsSettingArgs, MutationUpdateEnterpriseOwnerOrganizationRoleArgs, MutationUpdateEnterpriseProfileArgs, MutationUpdateEnterpriseRepositoryProjectsSettingArgs, MutationUpdateEnterpriseTeamDiscussionsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationRequiredSettingArgs, MutationUpdateEnvironmentArgs, MutationUpdateIpAllowListEnabledSettingArgs, MutationUpdateIpAllowListEntryArgs, MutationUpdateIpAllowListForInstalledAppsEnabledSettingArgs, MutationUpdateIssueArgs, MutationUpdateIssueCommentArgs, MutationUpdateLabelArgs, MutationUpdateNotificationRestrictionSettingArgs, MutationUpdateOrganizationAllowPrivateRepositoryForkingSettingArgs, MutationUpdateOrganizationWebCommitSignoffSettingArgs, MutationUpdatePatreonSponsorabilityArgs, MutationUpdateProjectArgs, MutationUpdateProjectCardArgs, MutationUpdateProjectColumnArgs, MutationUpdateProjectV2Args, MutationUpdateProjectV2CollaboratorsArgs, MutationUpdateProjectV2DraftIssueArgs, MutationUpdateProjectV2FieldArgs, MutationUpdateProjectV2ItemFieldValueArgs, MutationUpdateProjectV2ItemPositionArgs, MutationUpdateProjectV2StatusUpdateArgs, 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, ParentIssueAddedEvent, ParentIssueRemovedEvent, 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, ProjectV2PermissionLevel, ProjectV2Recent, ProjectV2RecentRecentProjectsArgs, ProjectV2RepositoriesArgs, ProjectV2Roles, ProjectV2SingleSelectField, ProjectV2SingleSelectFieldOption, ProjectV2SingleSelectFieldOptionColor, ProjectV2SingleSelectFieldOptionInput, ProjectV2SingleSelectFieldOptionsArgs, ProjectV2SortBy, ProjectV2SortByConnection, ProjectV2SortByEdge, ProjectV2SortByField, ProjectV2SortByFieldConnection, ProjectV2SortByFieldEdge, ProjectV2State, ProjectV2StatusOrder, ProjectV2StatusUpdate, ProjectV2StatusUpdateConnection, ProjectV2StatusUpdateEdge, ProjectV2StatusUpdateOrderField, ProjectV2StatusUpdateStatus, ProjectV2StatusUpdatesArgs, 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, RemoveSubIssueInput, RemoveSubIssuePayload, 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, ReprioritizeSubIssueInput, ReprioritizeSubIssuePayload, 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, SubIssueAddedEvent, SubIssueRemovedEvent, SubIssuesSummary, 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, TwoFactorCredentialSecurityType, 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, UnsubscribedEvent, Updatable, UpdatableComment, UpdateBranchProtectionRuleInput, UpdateBranchProtectionRulePayload, UpdateCheckRunInput, UpdateCheckRunPayload, UpdateCheckSuitePreferencesInput, UpdateCheckSuitePreferencesPayload, UpdateDiscussionCommentInput, UpdateDiscussionCommentPayload, UpdateDiscussionInput, UpdateDiscussionPayload, UpdateEnterpriseAdministratorRoleInput, UpdateEnterpriseAdministratorRolePayload, UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput, UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload, UpdateEnterpriseDefaultRepositoryPermissionSettingInput, UpdateEnterpriseDefaultRepositoryPermissionSettingPayload, UpdateEnterpriseDeployKeySettingInput, UpdateEnterpriseDeployKeySettingPayload, 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, UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput, UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingPayload, 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, UpdateProjectV2FieldInput, UpdateProjectV2FieldPayload, UpdateProjectV2Input, UpdateProjectV2ItemFieldValueInput, UpdateProjectV2ItemFieldValuePayload, UpdateProjectV2ItemPositionInput, UpdateProjectV2ItemPositionPayload, UpdateProjectV2ItemPositionPayloadItemsArgs, UpdateProjectV2Payload, UpdateProjectV2StatusUpdateInput, UpdateProjectV2StatusUpdatePayload, 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, UserNamespaceRepository, 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, UserViewType, 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 };
|
|
29186
|
+
export type { AbortQueuedMigrationsInput, AbortQueuedMigrationsPayload, AbortRepositoryMigrationInput, AbortRepositoryMigrationPayload, AcceptEnterpriseAdministratorInvitationInput, AcceptEnterpriseAdministratorInvitationPayload, AcceptEnterpriseMemberInvitationInput, AcceptEnterpriseMemberInvitationPayload, AcceptTopicSuggestionInput, AcceptTopicSuggestionPayload, AccessUserNamespaceRepositoryInput, AccessUserNamespaceRepositoryPayload, 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, AddSubIssueInput, AddSubIssuePayload, AddUpvoteInput, AddUpvotePayload, AddVerifiableDomainInput, AddVerifiableDomainPayload, AddedToMergeQueueEvent, AddedToProjectEvent, AnnouncementBanner, AnnouncementBannerI, 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, ConvertProjectV2DraftIssueItemToIssueInput, ConvertProjectV2DraftIssueItemToIssuePayload, 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, CreateProjectV2StatusUpdateInput, CreateProjectV2StatusUpdatePayload, 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, CvssSeverities, 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, DeleteProjectV2StatusUpdateInput, DeleteProjectV2StatusUpdatePayload, 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, EnterpriseDisallowedMethodsSettingValue, 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, EnterpriseOwnerInfoRepositoryDeployKeySettingOrganizationsArgs, EnterpriseOwnerInfoRepositoryProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoSamlIdentityProviderSettingOrganizationsArgs, EnterpriseOwnerInfoSupportEntitlementsArgs, EnterpriseOwnerInfoTeamDiscussionsSettingOrganizationsArgs, EnterpriseOwnerInfoTwoFactorRequiredSettingOrganizationsArgs, EnterprisePendingMemberInvitationConnection, EnterprisePendingMemberInvitationEdge, EnterpriseRepositoryInfo, EnterpriseRepositoryInfoConnection, EnterpriseRepositoryInfoEdge, EnterpriseRulesetArgs, EnterpriseRulesetsArgs, 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, EnterpriseUserNamespaceRepositoriesArgs, Environment, EnvironmentConnection, EnvironmentEdge, EnvironmentOrderField, EnvironmentPinnedFilterField, EnvironmentProtectionRulesArgs, Environments, Epss, 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, IssueClosedByPullRequestsReferencesArgs, 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, IssueStateReasonArgs, IssueSubIssuesArgs, 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, 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, MergeQueueGroupingStrategy, MergeQueueMergeMethod, MergeQueueMergingStrategy, MergeQueueParameters, MergeQueueParametersInput, 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, MutationAccessUserNamespaceRepositoryArgs, MutationAddAssigneesToAssignableArgs, MutationAddCommentArgs, MutationAddDiscussionCommentArgs, MutationAddDiscussionPollVoteArgs, MutationAddEnterpriseOrganizationMemberArgs, MutationAddEnterpriseSupportEntitlementArgs, MutationAddLabelsToLabelableArgs, MutationAddProjectCardArgs, MutationAddProjectColumnArgs, MutationAddProjectV2DraftIssueArgs, MutationAddProjectV2ItemByIdArgs, MutationAddPullRequestReviewArgs, MutationAddPullRequestReviewCommentArgs, MutationAddPullRequestReviewThreadArgs, MutationAddPullRequestReviewThreadReplyArgs, MutationAddReactionArgs, MutationAddStarArgs, MutationAddSubIssueArgs, MutationAddUpvoteArgs, MutationAddVerifiableDomainArgs, MutationApproveDeploymentsArgs, MutationApproveVerifiableDomainArgs, MutationArchiveProjectV2ItemArgs, MutationArchiveRepositoryArgs, MutationCancelEnterpriseAdminInvitationArgs, MutationCancelEnterpriseMemberInvitationArgs, MutationCancelSponsorshipArgs, MutationChangeUserStatusArgs, MutationClearLabelsFromLabelableArgs, MutationClearProjectV2ItemFieldValueArgs, MutationCloneProjectArgs, MutationCloneTemplateRepositoryArgs, MutationCloseDiscussionArgs, MutationCloseIssueArgs, MutationClosePullRequestArgs, MutationConvertProjectCardNoteToIssueArgs, MutationConvertProjectV2DraftIssueItemToIssueArgs, MutationConvertPullRequestToDraftArgs, MutationCopyProjectV2Args, MutationCreateAttributionInvitationArgs, MutationCreateBranchProtectionRuleArgs, MutationCreateCheckRunArgs, MutationCreateCheckSuiteArgs, MutationCreateCommitOnBranchArgs, MutationCreateDeploymentArgs, MutationCreateDeploymentStatusArgs, MutationCreateDiscussionArgs, MutationCreateEnterpriseOrganizationArgs, MutationCreateEnvironmentArgs, MutationCreateIpAllowListEntryArgs, MutationCreateIssueArgs, MutationCreateLabelArgs, MutationCreateLinkedBranchArgs, MutationCreateMigrationSourceArgs, MutationCreateProjectArgs, MutationCreateProjectV2Args, MutationCreateProjectV2FieldArgs, MutationCreateProjectV2StatusUpdateArgs, 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, MutationDeleteProjectV2StatusUpdateArgs, 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, MutationMarkProjectV2AsTemplateArgs, MutationMarkPullRequestReadyForReviewArgs, MutationMergeBranchArgs, MutationMergePullRequestArgs, MutationMinimizeCommentArgs, MutationMoveProjectCardArgs, MutationMoveProjectColumnArgs, MutationPinEnvironmentArgs, MutationPinIssueArgs, MutationPublishSponsorsTierArgs, MutationRegenerateEnterpriseIdentityProviderRecoveryCodesArgs, MutationRegenerateVerifiableDomainTokenArgs, MutationRejectDeploymentsArgs, MutationRemoveAssigneesFromAssignableArgs, MutationRemoveEnterpriseAdminArgs, MutationRemoveEnterpriseIdentityProviderArgs, MutationRemoveEnterpriseMemberArgs, MutationRemoveEnterpriseOrganizationArgs, MutationRemoveEnterpriseSupportEntitlementArgs, MutationRemoveLabelsFromLabelableArgs, MutationRemoveOutsideCollaboratorArgs, MutationRemoveReactionArgs, MutationRemoveStarArgs, MutationRemoveSubIssueArgs, MutationRemoveUpvoteArgs, MutationReopenDiscussionArgs, MutationReopenIssueArgs, MutationReopenPullRequestArgs, MutationReorderEnvironmentArgs, MutationReprioritizeSubIssueArgs, 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, MutationUpdateBranchProtectionRuleArgs, MutationUpdateCheckRunArgs, MutationUpdateCheckSuitePreferencesArgs, MutationUpdateDiscussionArgs, MutationUpdateDiscussionCommentArgs, MutationUpdateEnterpriseAdministratorRoleArgs, MutationUpdateEnterpriseAllowPrivateRepositoryForkingSettingArgs, MutationUpdateEnterpriseDefaultRepositoryPermissionSettingArgs, MutationUpdateEnterpriseDeployKeySettingArgs, MutationUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingArgs, MutationUpdateEnterpriseMembersCanCreateRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteIssuesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanInviteCollaboratorsSettingArgs, MutationUpdateEnterpriseMembersCanMakePurchasesSettingArgs, MutationUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingArgs, MutationUpdateEnterpriseMembersCanViewDependencyInsightsSettingArgs, MutationUpdateEnterpriseOrganizationProjectsSettingArgs, MutationUpdateEnterpriseOwnerOrganizationRoleArgs, MutationUpdateEnterpriseProfileArgs, MutationUpdateEnterpriseRepositoryProjectsSettingArgs, MutationUpdateEnterpriseTeamDiscussionsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationRequiredSettingArgs, MutationUpdateEnvironmentArgs, MutationUpdateIpAllowListEnabledSettingArgs, MutationUpdateIpAllowListEntryArgs, MutationUpdateIpAllowListForInstalledAppsEnabledSettingArgs, MutationUpdateIssueArgs, MutationUpdateIssueCommentArgs, MutationUpdateLabelArgs, MutationUpdateNotificationRestrictionSettingArgs, MutationUpdateOrganizationAllowPrivateRepositoryForkingSettingArgs, MutationUpdateOrganizationWebCommitSignoffSettingArgs, MutationUpdatePatreonSponsorabilityArgs, MutationUpdateProjectArgs, MutationUpdateProjectCardArgs, MutationUpdateProjectColumnArgs, MutationUpdateProjectV2Args, MutationUpdateProjectV2CollaboratorsArgs, MutationUpdateProjectV2DraftIssueArgs, MutationUpdateProjectV2FieldArgs, MutationUpdateProjectV2ItemFieldValueArgs, MutationUpdateProjectV2ItemPositionArgs, MutationUpdateProjectV2StatusUpdateArgs, 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, ParentIssueAddedEvent, ParentIssueRemovedEvent, 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, ProjectV2PermissionLevel, ProjectV2Recent, ProjectV2RecentRecentProjectsArgs, ProjectV2RepositoriesArgs, ProjectV2Roles, ProjectV2SingleSelectField, ProjectV2SingleSelectFieldOption, ProjectV2SingleSelectFieldOptionColor, ProjectV2SingleSelectFieldOptionInput, ProjectV2SingleSelectFieldOptionsArgs, ProjectV2SortBy, ProjectV2SortByConnection, ProjectV2SortByEdge, ProjectV2SortByField, ProjectV2SortByFieldConnection, ProjectV2SortByFieldEdge, ProjectV2State, ProjectV2StatusOrder, ProjectV2StatusUpdate, ProjectV2StatusUpdateConnection, ProjectV2StatusUpdateEdge, ProjectV2StatusUpdateOrderField, ProjectV2StatusUpdateStatus, ProjectV2StatusUpdatesArgs, 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, RemoveSubIssueInput, RemoveSubIssuePayload, 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, ReprioritizeSubIssueInput, ReprioritizeSubIssuePayload, 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, SubIssueAddedEvent, SubIssueRemovedEvent, SubIssuesSummary, 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, TwoFactorCredentialSecurityType, 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, UnsubscribedEvent, Updatable, UpdatableComment, UpdateBranchProtectionRuleInput, UpdateBranchProtectionRulePayload, UpdateCheckRunInput, UpdateCheckRunPayload, UpdateCheckSuitePreferencesInput, UpdateCheckSuitePreferencesPayload, UpdateDiscussionCommentInput, UpdateDiscussionCommentPayload, UpdateDiscussionInput, UpdateDiscussionPayload, UpdateEnterpriseAdministratorRoleInput, UpdateEnterpriseAdministratorRolePayload, UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput, UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload, UpdateEnterpriseDefaultRepositoryPermissionSettingInput, UpdateEnterpriseDefaultRepositoryPermissionSettingPayload, UpdateEnterpriseDeployKeySettingInput, UpdateEnterpriseDeployKeySettingPayload, 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, UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput, UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingPayload, 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, UpdateProjectV2FieldInput, UpdateProjectV2FieldPayload, UpdateProjectV2Input, UpdateProjectV2ItemFieldValueInput, UpdateProjectV2ItemFieldValuePayload, UpdateProjectV2ItemPositionInput, UpdateProjectV2ItemPositionPayload, UpdateProjectV2ItemPositionPayloadItemsArgs, UpdateProjectV2Payload, UpdateProjectV2StatusUpdateInput, UpdateProjectV2StatusUpdatePayload, 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, UserNamespaceRepository, UserNamespaceRepositoryConnection, UserNamespaceRepositoryEdge, 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, UserViewType, 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 };
|