github-schema 1.13.1 → 1.15.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.
@@ -736,15 +736,27 @@ 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
- /** Identifies the primary key from the database. */
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
- /** Project referenced by event. */
746
+ /**
747
+ * Project referenced by event.
748
+ * @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.
749
+ */
744
750
  project?: Maybe<Project>;
745
- /** Project card referenced by this project event. */
751
+ /**
752
+ * Project card referenced by this project event.
753
+ * @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.
754
+ */
746
755
  projectCard?: Maybe<ProjectCard>;
747
- /** Column name referenced by this project event. */
756
+ /**
757
+ * Column name referenced by this project event.
758
+ * @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.
759
+ */
748
760
  projectColumnName: Scalars['String']['output'];
749
761
  };
750
762
  /** An announcement banner for an enterprise or organization. */
@@ -3317,9 +3329,15 @@ type ConvertedNoteToIssueEvent = Node & {
3317
3329
  databaseId?: Maybe<Scalars['Int']['output']>;
3318
3330
  /** The Node ID of the ConvertedNoteToIssueEvent object */
3319
3331
  id: Scalars['ID']['output'];
3320
- /** Project referenced by event. */
3332
+ /**
3333
+ * Project referenced by event.
3334
+ * @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.
3335
+ */
3321
3336
  project?: Maybe<Project>;
3322
- /** Project card referenced by this project event. */
3337
+ /**
3338
+ * Project card referenced by this project event.
3339
+ * @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.
3340
+ */
3323
3341
  projectCard?: Maybe<ProjectCard>;
3324
3342
  /** Column name referenced by this project event. */
3325
3343
  projectColumnName: Scalars['String']['output'];
@@ -3821,6 +3839,8 @@ type CreateProjectV2FieldInput = {
3821
3839
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
3822
3840
  /** The data type of the field. */
3823
3841
  dataType: ProjectV2CustomFieldType;
3842
+ /** Configuration for an iteration field. */
3843
+ iterationConfiguration?: InputMaybe<ProjectV2IterationFieldConfigurationInput>;
3824
3844
  /** The name of the field. */
3825
3845
  name: Scalars['String']['input'];
3826
3846
  /** The ID of the Project to create the field in. */
@@ -6265,6 +6285,8 @@ type Enterprise = AnnouncementBannerI & Node & {
6265
6285
  rulesets?: Maybe<RepositoryRulesetConnection>;
6266
6286
  /** The URL-friendly identifier for the enterprise. */
6267
6287
  slug: Scalars['String']['output'];
6288
+ /** Identifies the date and time when the object was last updated. */
6289
+ updatedAt: Scalars['DateTime']['output'];
6268
6290
  /** The HTTP URL for this enterprise. */
6269
6291
  url: Scalars['URI']['output'];
6270
6292
  /** A list of repositories that belong to users. Only available for enterprises with Enterprise Managed Users. */
@@ -6398,7 +6420,9 @@ type EnterpriseAdministratorRole =
6398
6420
  /** Represents a billing manager of the enterprise account. */
6399
6421
  'BILLING_MANAGER'
6400
6422
  /** Represents an owner of the enterprise account. */
6401
- | 'OWNER';
6423
+ | 'OWNER'
6424
+ /** Unaffiliated member of the enterprise account without an admin role. */
6425
+ | 'UNAFFILIATED';
6402
6426
  /** The possible values for the enterprise allow private repository forking policy value. */
6403
6427
  type EnterpriseAllowPrivateRepositoryForkingPolicyValue =
6404
6428
  /** Members can fork a repository to an organization within this enterprise. */
@@ -8663,7 +8687,10 @@ type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lockable
8663
8687
  parent?: Maybe<Issue>;
8664
8688
  /** A list of Users that are participating in the Issue conversation. */
8665
8689
  participants: UserConnection;
8666
- /** List of project cards associated with this issue. */
8690
+ /**
8691
+ * List of project cards associated with this issue.
8692
+ * @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.
8693
+ */
8667
8694
  projectCards: ProjectCardConnection;
8668
8695
  /** List of project items associated with this issue. */
8669
8696
  projectItems: ProjectV2ItemConnection;
@@ -9950,13 +9977,13 @@ type MaxFilePathLengthParametersInput = {
9950
9977
  /** The maximum amount of characters allowed in file paths */
9951
9978
  maxFilePathLength: Scalars['Int']['input'];
9952
9979
  };
9953
- /** Prevent commits that exceed a specified file size limit from being pushed to the commit. */
9980
+ /** Prevent commits that exceed a specified file size limit from being pushed to the commit graph. */
9954
9981
  type MaxFileSizeParameters = {
9955
9982
  __typename?: 'MaxFileSizeParameters';
9956
9983
  /** The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS). */
9957
9984
  maxFileSize: Scalars['Int']['output'];
9958
9985
  };
9959
- /** Prevent commits that exceed a specified file size limit from being pushed to the commit. */
9986
+ /** Prevent commits that exceed a specified file size limit from being pushed to the commit graph. */
9960
9987
  type MaxFileSizeParametersInput = {
9961
9988
  /** The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS). */
9962
9989
  maxFileSize: Scalars['Int']['input'];
@@ -10701,17 +10728,32 @@ type MovedColumnsInProjectEvent = Node & {
10701
10728
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
10702
10729
  /** Identifies the date and time when the object was created. */
10703
10730
  createdAt: Scalars['DateTime']['output'];
10704
- /** Identifies the primary key from the database. */
10731
+ /**
10732
+ * Identifies the primary key from the database.
10733
+ * @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.
10734
+ */
10705
10735
  databaseId?: Maybe<Scalars['Int']['output']>;
10706
10736
  /** The Node ID of the MovedColumnsInProjectEvent object */
10707
10737
  id: Scalars['ID']['output'];
10708
- /** Column name the issue or pull request was moved from. */
10738
+ /**
10739
+ * Column name the issue or pull request was moved from.
10740
+ * @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.
10741
+ */
10709
10742
  previousProjectColumnName: Scalars['String']['output'];
10710
- /** Project referenced by event. */
10743
+ /**
10744
+ * Project referenced by event.
10745
+ * @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.
10746
+ */
10711
10747
  project?: Maybe<Project>;
10712
- /** Project card referenced by this project event. */
10748
+ /**
10749
+ * Project card referenced by this project event.
10750
+ * @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.
10751
+ */
10713
10752
  projectCard?: Maybe<ProjectCard>;
10714
- /** Column name the issue or pull request was moved to. */
10753
+ /**
10754
+ * Column name the issue or pull request was moved to.
10755
+ * @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.
10756
+ */
10715
10757
  projectColumnName: Scalars['String']['output'];
10716
10758
  };
10717
10759
  /** The root query for implementing GraphQL mutations. */
@@ -10743,9 +10785,15 @@ type Mutation = {
10743
10785
  addEnterpriseSupportEntitlement?: Maybe<AddEnterpriseSupportEntitlementPayload>;
10744
10786
  /** Adds labels to a labelable object. */
10745
10787
  addLabelsToLabelable?: Maybe<AddLabelsToLabelablePayload>;
10746
- /** Adds a card to a ProjectColumn. Either `contentId` or `note` must be provided but **not** both. */
10788
+ /**
10789
+ * Adds a card to a ProjectColumn. Either `contentId` or `note` must be provided but **not** both.
10790
+ * @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.
10791
+ */
10747
10792
  addProjectCard?: Maybe<AddProjectCardPayload>;
10748
- /** Adds a column to a Project. */
10793
+ /**
10794
+ * Adds a column to a Project.
10795
+ * @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.
10796
+ */
10749
10797
  addProjectColumn?: Maybe<AddProjectColumnPayload>;
10750
10798
  /** Creates a new draft issue and add it to a Project. */
10751
10799
  addProjectV2DraftIssue?: Maybe<AddProjectV2DraftIssuePayload>;
@@ -10793,7 +10841,10 @@ type Mutation = {
10793
10841
  * milestone fields are supported.
10794
10842
  */
10795
10843
  clearProjectV2ItemFieldValue?: Maybe<ClearProjectV2ItemFieldValuePayload>;
10796
- /** Creates a new project by cloning configuration from an existing project. */
10844
+ /**
10845
+ * Creates a new project by cloning configuration from an existing project.
10846
+ * @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.
10847
+ */
10797
10848
  cloneProject?: Maybe<CloneProjectPayload>;
10798
10849
  /** Create a new repository with the same files and directory structure as a template repository. */
10799
10850
  cloneTemplateRepository?: Maybe<CloneTemplateRepositoryPayload>;
@@ -10803,7 +10854,10 @@ type Mutation = {
10803
10854
  closeIssue?: Maybe<CloseIssuePayload>;
10804
10855
  /** Close a pull request. */
10805
10856
  closePullRequest?: Maybe<ClosePullRequestPayload>;
10806
- /** Convert a project note card to one associated with a newly created issue. */
10857
+ /**
10858
+ * Convert a project note card to one associated with a newly created issue.
10859
+ * @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.
10860
+ */
10807
10861
  convertProjectCardNoteToIssue?: Maybe<ConvertProjectCardNoteToIssuePayload>;
10808
10862
  /** Converts a projectV2 draft issue item to an issue. */
10809
10863
  convertProjectV2DraftIssueItemToIssue?: Maybe<ConvertProjectV2DraftIssueItemToIssuePayload>;
@@ -10891,7 +10945,10 @@ type Mutation = {
10891
10945
  createLinkedBranch?: Maybe<CreateLinkedBranchPayload>;
10892
10946
  /** Creates a GitHub Enterprise Importer (GEI) migration source. */
10893
10947
  createMigrationSource?: Maybe<CreateMigrationSourcePayload>;
10894
- /** Creates a new project. */
10948
+ /**
10949
+ * Creates a new project.
10950
+ * @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.
10951
+ */
10895
10952
  createProject?: Maybe<CreateProjectPayload>;
10896
10953
  /** Creates a new project. */
10897
10954
  createProjectV2?: Maybe<CreateProjectV2Payload>;
@@ -10948,11 +11005,20 @@ type Mutation = {
10948
11005
  deleteLinkedBranch?: Maybe<DeleteLinkedBranchPayload>;
10949
11006
  /** Delete a package version. */
10950
11007
  deletePackageVersion?: Maybe<DeletePackageVersionPayload>;
10951
- /** Deletes a project. */
11008
+ /**
11009
+ * Deletes a project.
11010
+ * @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.
11011
+ */
10952
11012
  deleteProject?: Maybe<DeleteProjectPayload>;
10953
- /** Deletes a project card. */
11013
+ /**
11014
+ * Deletes a project card.
11015
+ * @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.
11016
+ */
10954
11017
  deleteProjectCard?: Maybe<DeleteProjectCardPayload>;
10955
- /** Deletes a project column. */
11018
+ /**
11019
+ * Deletes a project column.
11020
+ * @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.
11021
+ */
10956
11022
  deleteProjectColumn?: Maybe<DeleteProjectColumnPayload>;
10957
11023
  /** Delete a project. */
10958
11024
  deleteProjectV2?: Maybe<DeleteProjectV2Payload>;
@@ -11000,7 +11066,10 @@ type Mutation = {
11000
11066
  grantEnterpriseOrganizationsMigratorRole?: Maybe<GrantEnterpriseOrganizationsMigratorRolePayload>;
11001
11067
  /** Grant the migrator role to a user or a team. */
11002
11068
  grantMigratorRole?: Maybe<GrantMigratorRolePayload>;
11003
- /** Creates a new project by importing columns and a list of issues/PRs. */
11069
+ /**
11070
+ * Creates a new project by importing columns and a list of issues/PRs.
11071
+ * @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.
11072
+ */
11004
11073
  importProject?: Maybe<ImportProjectPayload>;
11005
11074
  /** Invite someone to become an administrator of the enterprise. */
11006
11075
  inviteEnterpriseAdmin?: Maybe<InviteEnterpriseAdminPayload>;
@@ -11010,7 +11079,10 @@ type Mutation = {
11010
11079
  linkProjectV2ToRepository?: Maybe<LinkProjectV2ToRepositoryPayload>;
11011
11080
  /** Links a project to a team. */
11012
11081
  linkProjectV2ToTeam?: Maybe<LinkProjectV2ToTeamPayload>;
11013
- /** Creates a repository link for a project. */
11082
+ /**
11083
+ * Creates a repository link for a project.
11084
+ * @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.
11085
+ */
11014
11086
  linkRepositoryToProject?: Maybe<LinkRepositoryToProjectPayload>;
11015
11087
  /** Lock a lockable object */
11016
11088
  lockLockable?: Maybe<LockLockablePayload>;
@@ -11028,9 +11100,15 @@ type Mutation = {
11028
11100
  mergePullRequest?: Maybe<MergePullRequestPayload>;
11029
11101
  /** Minimizes a comment on an Issue, Commit, Pull Request, or Gist */
11030
11102
  minimizeComment?: Maybe<MinimizeCommentPayload>;
11031
- /** Moves a project card to another place. */
11103
+ /**
11104
+ * Moves a project card to another place.
11105
+ * @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.
11106
+ */
11032
11107
  moveProjectCard?: Maybe<MoveProjectCardPayload>;
11033
- /** Moves a project column to another place. */
11108
+ /**
11109
+ * Moves a project column to another place.
11110
+ * @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.
11111
+ */
11034
11112
  moveProjectColumn?: Maybe<MoveProjectColumnPayload>;
11035
11113
  /** Pin an environment to a repository */
11036
11114
  pinEnvironment?: Maybe<PinEnvironmentPayload>;
@@ -11125,7 +11203,10 @@ type Mutation = {
11125
11203
  unlinkProjectV2FromRepository?: Maybe<UnlinkProjectV2FromRepositoryPayload>;
11126
11204
  /** Unlinks a project to a team. */
11127
11205
  unlinkProjectV2FromTeam?: Maybe<UnlinkProjectV2FromTeamPayload>;
11128
- /** Deletes a repository link from a project. */
11206
+ /**
11207
+ * Deletes a repository link from a project.
11208
+ * @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.
11209
+ */
11129
11210
  unlinkRepositoryFromProject?: Maybe<UnlinkRepositoryFromProjectPayload>;
11130
11211
  /** Unlock a lockable object */
11131
11212
  unlockLockable?: Maybe<UnlockLockablePayload>;
@@ -11218,11 +11299,20 @@ type Mutation = {
11218
11299
  * your GitHub account with Patreon.
11219
11300
  */
11220
11301
  updatePatreonSponsorability?: Maybe<UpdatePatreonSponsorabilityPayload>;
11221
- /** Updates an existing project. */
11302
+ /**
11303
+ * Updates an existing project.
11304
+ * @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.
11305
+ */
11222
11306
  updateProject?: Maybe<UpdateProjectPayload>;
11223
- /** Updates an existing project card. */
11307
+ /**
11308
+ * Updates an existing project card.
11309
+ * @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.
11310
+ */
11224
11311
  updateProjectCard?: Maybe<UpdateProjectCardPayload>;
11225
- /** Updates an existing project column. */
11312
+ /**
11313
+ * Updates an existing project column.
11314
+ * @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.
11315
+ */
11226
11316
  updateProjectColumn?: Maybe<UpdateProjectColumnPayload>;
11227
11317
  /** Updates an existing project. */
11228
11318
  updateProjectV2?: Maybe<UpdateProjectV2Payload>;
@@ -13942,11 +14032,17 @@ type Organization = Actor & AnnouncementBannerI & MemberStatusable & Node & Pack
13942
14032
  pinnedItems: PinnableItemConnection;
13943
14033
  /** Returns how many more items this profile owner can pin to their profile. */
13944
14034
  pinnedItemsRemaining: Scalars['Int']['output'];
13945
- /** Find project by number. */
14035
+ /**
14036
+ * Find project by number.
14037
+ * @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.
14038
+ */
13946
14039
  project?: Maybe<Project>;
13947
14040
  /** Find a project by number. */
13948
14041
  projectV2?: Maybe<ProjectV2>;
13949
- /** A list of projects under the owner. */
14042
+ /**
14043
+ * A list of projects under the owner.
14044
+ * @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.
14045
+ */
13950
14046
  projects: ProjectConnection;
13951
14047
  /** The HTTP path listing organization's projects */
13952
14048
  projectsResourcePath: Scalars['URI']['output'];
@@ -14026,7 +14122,10 @@ type Organization = Actor & AnnouncementBannerI & MemberStatusable & Node & Pack
14026
14122
  viewerCanAdminister: Scalars['Boolean']['output'];
14027
14123
  /** Can the viewer pin repositories and gists to the profile? */
14028
14124
  viewerCanChangePinnedItems: Scalars['Boolean']['output'];
14029
- /** Can the current viewer create new projects on this owner. */
14125
+ /**
14126
+ * Can the current viewer create new projects on this owner.
14127
+ * @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.
14128
+ */
14030
14129
  viewerCanCreateProjects: Scalars['Boolean']['output'];
14031
14130
  /** Viewer can create repositories on this organization */
14032
14131
  viewerCanCreateRepositories: Scalars['Boolean']['output'];
@@ -15406,41 +15505,89 @@ type ProfileOwnerPinnedItemsArgs = {
15406
15505
  /** Projects manage issues, pull requests and notes within a project owner. */
15407
15506
  type Project = Closable & Node & Updatable & {
15408
15507
  __typename?: 'Project';
15409
- /** The project's description body. */
15508
+ /**
15509
+ * The project's description body.
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
+ */
15410
15512
  body?: Maybe<Scalars['String']['output']>;
15411
- /** The projects description body rendered to HTML. */
15513
+ /**
15514
+ * The projects description body rendered to HTML.
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
+ */
15412
15517
  bodyHTML: Scalars['HTML']['output'];
15413
15518
  /** Indicates if the object is closed (definition of closed may depend on type) */
15414
15519
  closed: Scalars['Boolean']['output'];
15415
15520
  /** Identifies the date and time when the object was closed. */
15416
15521
  closedAt?: Maybe<Scalars['DateTime']['output']>;
15417
- /** List of columns in the project */
15522
+ /**
15523
+ * List of columns in the project
15524
+ * @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.
15525
+ */
15418
15526
  columns: ProjectColumnConnection;
15419
- /** Identifies the date and time when the object was created. */
15527
+ /**
15528
+ * Identifies the date and time when the object was created.
15529
+ * @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.
15530
+ */
15420
15531
  createdAt: Scalars['DateTime']['output'];
15421
- /** The actor who originally created the project. */
15532
+ /**
15533
+ * The actor who originally created the project.
15534
+ * @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.
15535
+ */
15422
15536
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
15423
- /** Identifies the primary key from the database. */
15537
+ /**
15538
+ * Identifies the primary key from the database.
15539
+ * @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.
15540
+ */
15424
15541
  databaseId?: Maybe<Scalars['Int']['output']>;
15425
- /** The Node ID of the Project object */
15542
+ /**
15543
+ * The Node ID of the Project object
15544
+ * @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.
15545
+ */
15426
15546
  id: Scalars['ID']['output'];
15427
- /** The project's name. */
15547
+ /**
15548
+ * The project's name.
15549
+ * @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.
15550
+ */
15428
15551
  name: Scalars['String']['output'];
15429
- /** The project's number. */
15552
+ /**
15553
+ * The project's number.
15554
+ * @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.
15555
+ */
15430
15556
  number: Scalars['Int']['output'];
15431
- /** The project's owner. Currently limited to repositories, organizations, and users. */
15557
+ /**
15558
+ * The project's owner. Currently limited to repositories, organizations, and users.
15559
+ * @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.
15560
+ */
15432
15561
  owner: Organization | Repository | User;
15433
- /** List of pending cards in this project */
15562
+ /**
15563
+ * List of pending cards in this project
15564
+ * @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.
15565
+ */
15434
15566
  pendingCards: ProjectCardConnection;
15435
- /** Project progress details. */
15567
+ /**
15568
+ * Project progress details.
15569
+ * @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.
15570
+ */
15436
15571
  progress: ProjectProgress;
15437
- /** The HTTP path for this project */
15572
+ /**
15573
+ * The HTTP path for this project
15574
+ * @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.
15575
+ */
15438
15576
  resourcePath: Scalars['URI']['output'];
15439
- /** Whether the project is open or closed. */
15577
+ /**
15578
+ * Whether the project is open or closed.
15579
+ * @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.
15580
+ */
15440
15581
  state: ProjectState;
15441
- /** Identifies the date and time when the object was last updated. */
15582
+ /**
15583
+ * Identifies the date and time when the object was last updated.
15584
+ * @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.
15585
+ */
15442
15586
  updatedAt: Scalars['DateTime']['output'];
15443
- /** The HTTP URL for this project */
15587
+ /**
15588
+ * The HTTP URL for this project
15589
+ * @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.
15590
+ */
15444
15591
  url: Scalars['URI']['output'];
15445
15592
  /** Indicates if the object can be closed by the viewer. */
15446
15593
  viewerCanClose: Scalars['Boolean']['output'];
@@ -15472,31 +15619,68 @@ type ProjectCard = Node & {
15472
15619
  * project column at a time. The column field will be null if the card is created
15473
15620
  * in a pending state and has yet to be associated with a column. Once cards are
15474
15621
  * associated with a column, they will not become pending in the future.
15622
+ * @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.
15475
15623
  */
15476
15624
  column?: Maybe<ProjectColumn>;
15477
- /** The card content item */
15625
+ /**
15626
+ * The card content item
15627
+ * @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.
15628
+ */
15478
15629
  content?: Maybe<ProjectCardItem>;
15479
- /** Identifies the date and time when the object was created. */
15630
+ /**
15631
+ * Identifies the date and time when the object was created.
15632
+ * @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.
15633
+ */
15480
15634
  createdAt: Scalars['DateTime']['output'];
15481
- /** The actor who created this card */
15635
+ /**
15636
+ * The actor who created this card
15637
+ * @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.
15638
+ */
15482
15639
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
15483
- /** Identifies the primary key from the database. */
15640
+ /**
15641
+ * Identifies the primary key from the database.
15642
+ * @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.
15643
+ */
15484
15644
  databaseId?: Maybe<Scalars['Int']['output']>;
15485
- /** The Node ID of the ProjectCard object */
15645
+ /**
15646
+ * The Node ID of the ProjectCard object
15647
+ * @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.
15648
+ */
15486
15649
  id: Scalars['ID']['output'];
15487
- /** Whether the card is archived */
15650
+ /**
15651
+ * Whether the card is archived
15652
+ * @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.
15653
+ */
15488
15654
  isArchived: Scalars['Boolean']['output'];
15489
- /** The card note */
15655
+ /**
15656
+ * The card note
15657
+ * @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.
15658
+ */
15490
15659
  note?: Maybe<Scalars['String']['output']>;
15491
- /** The project that contains this card. */
15660
+ /**
15661
+ * The project that contains this card.
15662
+ * @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.
15663
+ */
15492
15664
  project: Project;
15493
- /** The HTTP path for this card */
15665
+ /**
15666
+ * The HTTP path for this card
15667
+ * @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.
15668
+ */
15494
15669
  resourcePath: Scalars['URI']['output'];
15495
- /** The state of ProjectCard */
15670
+ /**
15671
+ * The state of ProjectCard
15672
+ * @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.
15673
+ */
15496
15674
  state?: Maybe<ProjectCardState>;
15497
- /** Identifies the date and time when the object was last updated. */
15675
+ /**
15676
+ * Identifies the date and time when the object was last updated.
15677
+ * @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.
15678
+ */
15498
15679
  updatedAt: Scalars['DateTime']['output'];
15499
- /** The HTTP URL for this card */
15680
+ /**
15681
+ * The HTTP URL for this card
15682
+ * @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.
15683
+ */
15500
15684
  url: Scalars['URI']['output'];
15501
15685
  };
15502
15686
  /** The possible archived states of a project card. */
@@ -15545,25 +15729,55 @@ type ProjectCardState =
15545
15729
  /** A column inside a project. */
15546
15730
  type ProjectColumn = Node & {
15547
15731
  __typename?: 'ProjectColumn';
15548
- /** List of cards in the column */
15732
+ /**
15733
+ * List of cards in the column
15734
+ * @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.
15735
+ */
15549
15736
  cards: ProjectCardConnection;
15550
- /** Identifies the date and time when the object was created. */
15737
+ /**
15738
+ * Identifies the date and time when the object was created.
15739
+ * @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.
15740
+ */
15551
15741
  createdAt: Scalars['DateTime']['output'];
15552
- /** Identifies the primary key from the database. */
15742
+ /**
15743
+ * Identifies the primary key from the database.
15744
+ * @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.
15745
+ */
15553
15746
  databaseId?: Maybe<Scalars['Int']['output']>;
15554
- /** The Node ID of the ProjectColumn object */
15747
+ /**
15748
+ * The Node ID of the ProjectColumn object
15749
+ * @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.
15750
+ */
15555
15751
  id: Scalars['ID']['output'];
15556
- /** The project column's name. */
15752
+ /**
15753
+ * The project column's name.
15754
+ * @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.
15755
+ */
15557
15756
  name: Scalars['String']['output'];
15558
- /** The project that contains this column. */
15757
+ /**
15758
+ * The project that contains this column.
15759
+ * @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.
15760
+ */
15559
15761
  project: Project;
15560
- /** The semantic purpose of the column */
15762
+ /**
15763
+ * The semantic purpose of the column
15764
+ * @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.
15765
+ */
15561
15766
  purpose?: Maybe<ProjectColumnPurpose>;
15562
- /** The HTTP path for this project column */
15767
+ /**
15768
+ * The HTTP path for this project column
15769
+ * @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.
15770
+ */
15563
15771
  resourcePath: Scalars['URI']['output'];
15564
- /** Identifies the date and time when the object was last updated. */
15772
+ /**
15773
+ * Identifies the date and time when the object was last updated.
15774
+ * @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.
15775
+ */
15565
15776
  updatedAt: Scalars['DateTime']['output'];
15566
- /** The HTTP URL for this project column */
15777
+ /**
15778
+ * The HTTP URL for this project column
15779
+ * @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.
15780
+ */
15567
15781
  url: Scalars['URI']['output'];
15568
15782
  };
15569
15783
  /** A column inside a project. */
@@ -15648,17 +15862,35 @@ type ProjectOrderField =
15648
15862
  | 'UPDATED_AT';
15649
15863
  /** Represents an owner of a Project. */
15650
15864
  type ProjectOwner = {
15651
- /** The Node ID of the ProjectOwner object */
15865
+ /**
15866
+ * The Node ID of the ProjectOwner object
15867
+ * @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.
15868
+ */
15652
15869
  id: Scalars['ID']['output'];
15653
- /** Find project by number. */
15870
+ /**
15871
+ * Find project by number.
15872
+ * @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.
15873
+ */
15654
15874
  project?: Maybe<Project>;
15655
- /** A list of projects under the owner. */
15875
+ /**
15876
+ * A list of projects under the owner.
15877
+ * @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.
15878
+ */
15656
15879
  projects: ProjectConnection;
15657
- /** The HTTP path listing owners projects */
15880
+ /**
15881
+ * The HTTP path listing owners projects
15882
+ * @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.
15883
+ */
15658
15884
  projectsResourcePath: Scalars['URI']['output'];
15659
- /** The HTTP URL listing owners projects */
15885
+ /**
15886
+ * The HTTP URL listing owners projects
15887
+ * @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.
15888
+ */
15660
15889
  projectsUrl: Scalars['URI']['output'];
15661
- /** Can the current viewer create new projects on this owner. */
15890
+ /**
15891
+ * Can the current viewer create new projects on this owner.
15892
+ * @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.
15893
+ */
15662
15894
  viewerCanCreateProjects: Scalars['Boolean']['output'];
15663
15895
  };
15664
15896
  /** Represents an owner of a Project. */
@@ -15678,19 +15910,40 @@ type ProjectOwnerProjectsArgs = {
15678
15910
  /** Project progress stats. */
15679
15911
  type ProjectProgress = {
15680
15912
  __typename?: 'ProjectProgress';
15681
- /** The number of done cards. */
15913
+ /**
15914
+ * The number of done cards.
15915
+ * @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.
15916
+ */
15682
15917
  doneCount: Scalars['Int']['output'];
15683
- /** The percentage of done cards. */
15918
+ /**
15919
+ * The percentage of done cards.
15920
+ * @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.
15921
+ */
15684
15922
  donePercentage: Scalars['Float']['output'];
15685
- /** Whether progress tracking is enabled and cards with purpose exist for this project */
15923
+ /**
15924
+ * Whether progress tracking is enabled and cards with purpose exist for this project
15925
+ * @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.
15926
+ */
15686
15927
  enabled: Scalars['Boolean']['output'];
15687
- /** The number of in-progress cards. */
15928
+ /**
15929
+ * The number of in-progress cards.
15930
+ * @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.
15931
+ */
15688
15932
  inProgressCount: Scalars['Int']['output'];
15689
- /** The percentage of in-progress cards. */
15933
+ /**
15934
+ * The percentage of in-progress cards.
15935
+ * @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.
15936
+ */
15690
15937
  inProgressPercentage: Scalars['Float']['output'];
15691
- /** The number of to do cards. */
15938
+ /**
15939
+ * The number of to do cards.
15940
+ * @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.
15941
+ */
15692
15942
  todoCount: Scalars['Int']['output'];
15693
- /** The percentage of to do cards. */
15943
+ /**
15944
+ * The percentage of to do cards.
15945
+ * @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.
15946
+ */
15694
15947
  todoPercentage: Scalars['Float']['output'];
15695
15948
  };
15696
15949
  /** State of the project; either 'open' or 'closed' */
@@ -15891,6 +16144,8 @@ type ProjectV2Connection = {
15891
16144
  type ProjectV2CustomFieldType =
15892
16145
  /** Date */
15893
16146
  'DATE'
16147
+ /** Iteration */
16148
+ | 'ITERATION'
15894
16149
  /** Number */
15895
16150
  | 'NUMBER'
15896
16151
  /** Single Select */
@@ -16013,12 +16268,16 @@ type ProjectV2FieldType =
16013
16268
  | 'MILESTONE'
16014
16269
  /** Number */
16015
16270
  | 'NUMBER'
16271
+ /** Parent issue */
16272
+ | 'PARENT_ISSUE'
16016
16273
  /** Repository */
16017
16274
  | 'REPOSITORY'
16018
16275
  /** Reviewers */
16019
16276
  | 'REVIEWERS'
16020
16277
  /** Single Select */
16021
16278
  | 'SINGLE_SELECT'
16279
+ /** Sub-issues progress */
16280
+ | 'SUB_ISSUES_PROGRESS'
16022
16281
  /** Text */
16023
16282
  | 'TEXT'
16024
16283
  /** Title */
@@ -16376,6 +16635,15 @@ type ProjectV2ItemType =
16376
16635
  | 'PULL_REQUEST'
16377
16636
  /** Redacted Item */
16378
16637
  | 'REDACTED';
16638
+ /** Represents an iteration */
16639
+ type ProjectV2Iteration = {
16640
+ /** The duration of the iteration, in days. */
16641
+ duration: Scalars['Int']['input'];
16642
+ /** The start date for the iteration. */
16643
+ startDate: Scalars['Date']['input'];
16644
+ /** The title for the iteration. */
16645
+ title: Scalars['String']['input'];
16646
+ };
16379
16647
  /** An iteration field inside a project. */
16380
16648
  type ProjectV2IterationField = Node & ProjectV2FieldCommon & {
16381
16649
  __typename?: 'ProjectV2IterationField';
@@ -16408,6 +16676,15 @@ type ProjectV2IterationFieldConfiguration = {
16408
16676
  /** The iteration's start day of the week */
16409
16677
  startDay: Scalars['Int']['output'];
16410
16678
  };
16679
+ /** Represents an iteration field configuration. */
16680
+ type ProjectV2IterationFieldConfigurationInput = {
16681
+ /** The duration of each iteration, in days. */
16682
+ duration: Scalars['Int']['input'];
16683
+ /** Zero or more iterations for the field. */
16684
+ iterations: Array<ProjectV2Iteration>;
16685
+ /** The start date for the first iteration. */
16686
+ startDate: Scalars['Date']['input'];
16687
+ };
16411
16688
  /** Iteration field iteration settings for a project. */
16412
16689
  type ProjectV2IterationFieldIteration = {
16413
16690
  __typename?: 'ProjectV2IterationFieldIteration';
@@ -17129,7 +17406,10 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
17129
17406
  * `mergeable` field for more details on the mergeability of the pull request.
17130
17407
  */
17131
17408
  potentialMergeCommit?: Maybe<Commit>;
17132
- /** List of project cards associated with this pull request. */
17409
+ /**
17410
+ * List of project cards associated with this pull request.
17411
+ * @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.
17412
+ */
17133
17413
  projectCards: ProjectCardConnection;
17134
17414
  /** List of project items associated with this pull request. */
17135
17415
  projectItems: ProjectV2ItemConnection;
@@ -17555,8 +17835,8 @@ type PullRequestOrderField =
17555
17835
  type PullRequestParameters = {
17556
17836
  __typename?: 'PullRequestParameters';
17557
17837
  /**
17558
- * When merging pull requests, you can allow any combination of merge commits,
17559
- * squashing, or rebasing. At least one option must be enabled.
17838
+ * Array of allowed merge methods. Allowed values include `merge`, `squash`, and
17839
+ * `rebase`. At least one option must be enabled.
17560
17840
  */
17561
17841
  allowedMergeMethods?: Maybe<Array<Scalars['String']['output']>>;
17562
17842
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
@@ -17573,8 +17853,8 @@ type PullRequestParameters = {
17573
17853
  /** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */
17574
17854
  type PullRequestParametersInput = {
17575
17855
  /**
17576
- * When merging pull requests, you can allow any combination of merge commits,
17577
- * squashing, or rebasing. At least one option must be enabled.
17856
+ * Array of allowed merge methods. Allowed values include `merge`, `squash`, and
17857
+ * `rebase`. At least one option must be enabled.
17578
17858
  */
17579
17859
  allowedMergeMethods?: InputMaybe<Array<Scalars['String']['input']>>;
17580
17860
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
@@ -19336,13 +19616,22 @@ type RemovedFromProjectEvent = Node & {
19336
19616
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
19337
19617
  /** Identifies the date and time when the object was created. */
19338
19618
  createdAt: Scalars['DateTime']['output'];
19339
- /** Identifies the primary key from the database. */
19619
+ /**
19620
+ * Identifies the primary key from the database.
19621
+ * @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.
19622
+ */
19340
19623
  databaseId?: Maybe<Scalars['Int']['output']>;
19341
19624
  /** The Node ID of the RemovedFromProjectEvent object */
19342
19625
  id: Scalars['ID']['output'];
19343
- /** Project referenced by event. */
19626
+ /**
19627
+ * Project referenced by event.
19628
+ * @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.
19629
+ */
19344
19630
  project?: Maybe<Project>;
19345
- /** Column name referenced by this project event. */
19631
+ /**
19632
+ * Column name referenced by this project event.
19633
+ * @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.
19634
+ */
19346
19635
  projectColumnName: Scalars['String']['output'];
19347
19636
  };
19348
19637
  /** Represents a 'renamed' event on a given issue or pull request */
@@ -20619,11 +20908,17 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
20619
20908
  planFeatures: RepositoryPlanFeatures;
20620
20909
  /** The primary language of the repository's code. */
20621
20910
  primaryLanguage?: Maybe<Language>;
20622
- /** Find project by number. */
20911
+ /**
20912
+ * Find project by number.
20913
+ * @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.
20914
+ */
20623
20915
  project?: Maybe<Project>;
20624
20916
  /** Finds and returns the Project according to the provided Project number. */
20625
20917
  projectV2?: Maybe<ProjectV2>;
20626
- /** A list of projects under the owner. */
20918
+ /**
20919
+ * A list of projects under the owner.
20920
+ * @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.
20921
+ */
20627
20922
  projects: ProjectConnection;
20628
20923
  /** The HTTP path listing the repository's projects */
20629
20924
  projectsResourcePath: Scalars['URI']['output'];
@@ -20697,7 +20992,10 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
20697
20992
  usesCustomOpenGraphImage: Scalars['Boolean']['output'];
20698
20993
  /** Indicates whether the viewer has admin permissions on this repository. */
20699
20994
  viewerCanAdminister: Scalars['Boolean']['output'];
20700
- /** Can the current viewer create new projects on this owner. */
20995
+ /**
20996
+ * Can the current viewer create new projects on this owner.
20997
+ * @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.
20998
+ */
20701
20999
  viewerCanCreateProjects: Scalars['Boolean']['output'];
20702
21000
  /** Check if the viewer is able to change their subscription status for the repository. */
20703
21001
  viewerCanSubscribe: Scalars['Boolean']['output'];
@@ -21732,7 +22030,7 @@ type RepositoryRuleType =
21732
22030
  | 'LOCK_BRANCH'
21733
22031
  /** Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph. */
21734
22032
  | 'MAX_FILE_PATH_LENGTH'
21735
- /** Prevent commits that exceed a specified file size limit from being pushed to the commit. */
22033
+ /** Prevent commits that exceed a specified file size limit from being pushed to the commit graph. */
21736
22034
  | 'MAX_FILE_SIZE'
21737
22035
  /** Max ref updates */
21738
22036
  | 'MAX_REF_UPDATES'
@@ -27271,6 +27569,8 @@ type UpdateProjectV2FieldInput = {
27271
27569
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
27272
27570
  /** The ID of the field to update. */
27273
27571
  fieldId: Scalars['ID']['input'];
27572
+ /** Configuration for an iteration field. */
27573
+ iterationConfiguration?: InputMaybe<ProjectV2IterationFieldConfigurationInput>;
27274
27574
  /** The name to update. */
27275
27575
  name?: InputMaybe<Scalars['String']['input']>;
27276
27576
  /**
@@ -27912,11 +28212,17 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
27912
28212
  pinnedItems: PinnableItemConnection;
27913
28213
  /** Returns how many more items this profile owner can pin to their profile. */
27914
28214
  pinnedItemsRemaining: Scalars['Int']['output'];
27915
- /** Find project by number. */
28215
+ /**
28216
+ * Find project by number.
28217
+ * @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.
28218
+ */
27916
28219
  project?: Maybe<Project>;
27917
28220
  /** Find a project by number. */
27918
28221
  projectV2?: Maybe<ProjectV2>;
27919
- /** A list of projects under the owner. */
28222
+ /**
28223
+ * A list of projects under the owner.
28224
+ * @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.
28225
+ */
27920
28226
  projects: ProjectConnection;
27921
28227
  /** The HTTP path listing user's projects */
27922
28228
  projectsResourcePath: Scalars['URI']['output'];
@@ -27990,7 +28296,10 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
27990
28296
  userViewType: UserViewType;
27991
28297
  /** Can the viewer pin repositories and gists to the profile? */
27992
28298
  viewerCanChangePinnedItems: Scalars['Boolean']['output'];
27993
- /** Can the current viewer create new projects on this owner. */
28299
+ /**
28300
+ * Can the current viewer create new projects on this owner.
28301
+ * @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.
28302
+ */
27994
28303
  viewerCanCreateProjects: Scalars['Boolean']['output'];
27995
28304
  /** Whether or not the viewer is able to follow the user. */
27996
28305
  viewerCanFollow: Scalars['Boolean']['output'];
@@ -28574,8 +28883,6 @@ type UserNamespaceRepository = Node & {
28574
28883
  nameWithOwner: Scalars['String']['output'];
28575
28884
  /** The user owner of the repository. */
28576
28885
  owner: Organization | User;
28577
- /** The repository owned by an enterprise managed user. */
28578
- repository?: Maybe<Repository>;
28579
28886
  };
28580
28887
  /** A list of repositories owned by users in an enterprise with Enterprise Managed Users. */
28581
28888
  type UserNamespaceRepositoryConnection = {
@@ -28939,4 +29246,4 @@ type WorkflowsParametersInput = {
28939
29246
  workflows: Array<WorkflowFileReferenceInput>;
28940
29247
  };
28941
29248
 
28942
- 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 };
29249
+ 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, ProjectV2Iteration, ProjectV2IterationField, ProjectV2IterationFieldConfiguration, ProjectV2IterationFieldConfigurationInput, 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 };