github-schema 1.4.1 → 1.5.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.
@@ -658,7 +658,7 @@ type AddedToMergeQueueEvent = Node & {
658
658
  createdAt: Scalars['DateTime']['output'];
659
659
  /** The user who added this Pull Request to the merge queue */
660
660
  enqueuer?: Maybe<User>;
661
- /** The Node ID of this object */
661
+ /** The Node ID of the AddedToMergeQueueEvent object */
662
662
  id: Scalars['ID']['output'];
663
663
  /** The merge queue where this pull request was added to. */
664
664
  mergeQueue?: Maybe<MergeQueue>;
@@ -674,7 +674,7 @@ type AddedToProjectEvent = Node & {
674
674
  createdAt: Scalars['DateTime']['output'];
675
675
  /** Identifies the primary key from the database. */
676
676
  databaseId?: Maybe<Scalars['Int']['output']>;
677
- /** The Node ID of this object */
677
+ /** The Node ID of the AddedToProjectEvent object */
678
678
  id: Scalars['ID']['output'];
679
679
  };
680
680
  /** Represents an announcement banner. */
@@ -695,7 +695,7 @@ type App = Node & {
695
695
  databaseId?: Maybe<Scalars['Int']['output']>;
696
696
  /** The description of the app. */
697
697
  description?: Maybe<Scalars['String']['output']>;
698
- /** The Node ID of this object */
698
+ /** The Node ID of the App object */
699
699
  id: Scalars['ID']['output'];
700
700
  /** The IP addresses of the app. */
701
701
  ipAllowListEntries: IpAllowListEntryConnection;
@@ -813,7 +813,7 @@ type AssignedEvent = Node & {
813
813
  assignee?: Maybe<Assignee>;
814
814
  /** Identifies the date and time when the object was created. */
815
815
  createdAt: Scalars['DateTime']['output'];
816
- /** The Node ID of this object */
816
+ /** The Node ID of the AssignedEvent object */
817
817
  id: Scalars['ID']['output'];
818
818
  /**
819
819
  * Identifies the user who was assigned.
@@ -874,7 +874,7 @@ type AutoMergeDisabledEvent = Node & {
874
874
  createdAt: Scalars['DateTime']['output'];
875
875
  /** The user who disabled auto-merge for this Pull Request */
876
876
  disabler?: Maybe<User>;
877
- /** The Node ID of this object */
877
+ /** The Node ID of the AutoMergeDisabledEvent object */
878
878
  id: Scalars['ID']['output'];
879
879
  /** PullRequest referenced by event */
880
880
  pullRequest?: Maybe<PullRequest>;
@@ -892,7 +892,7 @@ type AutoMergeEnabledEvent = Node & {
892
892
  createdAt: Scalars['DateTime']['output'];
893
893
  /** The user who enabled auto-merge for this Pull Request */
894
894
  enabler?: Maybe<User>;
895
- /** The Node ID of this object */
895
+ /** The Node ID of the AutoMergeEnabledEvent object */
896
896
  id: Scalars['ID']['output'];
897
897
  /** PullRequest referenced by event. */
898
898
  pullRequest?: Maybe<PullRequest>;
@@ -933,7 +933,7 @@ type AutoRebaseEnabledEvent = Node & {
933
933
  createdAt: Scalars['DateTime']['output'];
934
934
  /** The user who enabled auto-merge (rebase) for this Pull Request */
935
935
  enabler?: Maybe<User>;
936
- /** The Node ID of this object */
936
+ /** The Node ID of the AutoRebaseEnabledEvent object */
937
937
  id: Scalars['ID']['output'];
938
938
  /** PullRequest referenced by event. */
939
939
  pullRequest?: Maybe<PullRequest>;
@@ -947,7 +947,7 @@ type AutoSquashEnabledEvent = Node & {
947
947
  createdAt: Scalars['DateTime']['output'];
948
948
  /** The user who enabled auto-merge (squash) for this Pull Request */
949
949
  enabler?: Maybe<User>;
950
- /** The Node ID of this object */
950
+ /** The Node ID of the AutoSquashEnabledEvent object */
951
951
  id: Scalars['ID']['output'];
952
952
  /** PullRequest referenced by event. */
953
953
  pullRequest?: Maybe<PullRequest>;
@@ -959,7 +959,7 @@ type AutomaticBaseChangeFailedEvent = Node & {
959
959
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
960
960
  /** Identifies the date and time when the object was created. */
961
961
  createdAt: Scalars['DateTime']['output'];
962
- /** The Node ID of this object */
962
+ /** The Node ID of the AutomaticBaseChangeFailedEvent object */
963
963
  id: Scalars['ID']['output'];
964
964
  /** The new base for this PR */
965
965
  newBase: Scalars['String']['output'];
@@ -975,7 +975,7 @@ type AutomaticBaseChangeSucceededEvent = Node & {
975
975
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
976
976
  /** Identifies the date and time when the object was created. */
977
977
  createdAt: Scalars['DateTime']['output'];
978
- /** The Node ID of this object */
978
+ /** The Node ID of the AutomaticBaseChangeSucceededEvent object */
979
979
  id: Scalars['ID']['output'];
980
980
  /** The new base for this PR */
981
981
  newBase: Scalars['String']['output'];
@@ -995,7 +995,7 @@ type BaseRefChangedEvent = Node & {
995
995
  currentRefName: Scalars['String']['output'];
996
996
  /** Identifies the primary key from the database. */
997
997
  databaseId?: Maybe<Scalars['Int']['output']>;
998
- /** The Node ID of this object */
998
+ /** The Node ID of the BaseRefChangedEvent object */
999
999
  id: Scalars['ID']['output'];
1000
1000
  /** Identifies the name of the base ref for the pull request before it was changed. */
1001
1001
  previousRefName: Scalars['String']['output'];
@@ -1011,7 +1011,7 @@ type BaseRefDeletedEvent = Node & {
1011
1011
  baseRefName?: Maybe<Scalars['String']['output']>;
1012
1012
  /** Identifies the date and time when the object was created. */
1013
1013
  createdAt: Scalars['DateTime']['output'];
1014
- /** The Node ID of this object */
1014
+ /** The Node ID of the BaseRefDeletedEvent object */
1015
1015
  id: Scalars['ID']['output'];
1016
1016
  /** PullRequest referenced by event. */
1017
1017
  pullRequest?: Maybe<PullRequest>;
@@ -1027,7 +1027,7 @@ type BaseRefForcePushedEvent = Node & {
1027
1027
  beforeCommit?: Maybe<Commit>;
1028
1028
  /** Identifies the date and time when the object was created. */
1029
1029
  createdAt: Scalars['DateTime']['output'];
1030
- /** The Node ID of this object */
1030
+ /** The Node ID of the BaseRefForcePushedEvent object */
1031
1031
  id: Scalars['ID']['output'];
1032
1032
  /** PullRequest referenced by event. */
1033
1033
  pullRequest: PullRequest;
@@ -1068,7 +1068,7 @@ type Blob = GitObject & Node & {
1068
1068
  commitResourcePath: Scalars['URI']['output'];
1069
1069
  /** The HTTP URL for this Git object */
1070
1070
  commitUrl: Scalars['URI']['output'];
1071
- /** The Node ID of this object */
1071
+ /** The Node ID of the Blob object */
1072
1072
  id: Scalars['ID']['output'];
1073
1073
  /** Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding. */
1074
1074
  isBinary?: Maybe<Scalars['Boolean']['output']>;
@@ -1090,7 +1090,7 @@ type Bot = Actor & Node & UniformResourceLocatable & {
1090
1090
  createdAt: Scalars['DateTime']['output'];
1091
1091
  /** Identifies the primary key from the database. */
1092
1092
  databaseId?: Maybe<Scalars['Int']['output']>;
1093
- /** The Node ID of this object */
1093
+ /** The Node ID of the Bot object */
1094
1094
  id: Scalars['ID']['output'];
1095
1095
  /** The username of the actor. */
1096
1096
  login: Scalars['String']['output'];
@@ -1151,7 +1151,7 @@ type BranchProtectionRule = Node & {
1151
1151
  databaseId?: Maybe<Scalars['Int']['output']>;
1152
1152
  /** Will new commits pushed to matching branches dismiss pull request review approvals. */
1153
1153
  dismissesStaleReviews: Scalars['Boolean']['output'];
1154
- /** The Node ID of this object */
1154
+ /** The Node ID of the BranchProtectionRule object */
1155
1155
  id: Scalars['ID']['output'];
1156
1156
  /** Can admins override branch protection. */
1157
1157
  isAdminEnforced: Scalars['Boolean']['output'];
@@ -1317,7 +1317,7 @@ type BypassForcePushAllowance = Node & {
1317
1317
  actor?: Maybe<BranchActorAllowanceActor>;
1318
1318
  /** Identifies the branch protection rule associated with the allowed user, team, or app. */
1319
1319
  branchProtectionRule?: Maybe<BranchProtectionRule>;
1320
- /** The Node ID of this object */
1320
+ /** The Node ID of the BypassForcePushAllowance object */
1321
1321
  id: Scalars['ID']['output'];
1322
1322
  };
1323
1323
  /** The connection type for BypassForcePushAllowance. */
@@ -1347,7 +1347,7 @@ type BypassPullRequestAllowance = Node & {
1347
1347
  actor?: Maybe<BranchActorAllowanceActor>;
1348
1348
  /** Identifies the branch protection rule associated with the allowed user, team, or app. */
1349
1349
  branchProtectionRule?: Maybe<BranchProtectionRule>;
1350
- /** The Node ID of this object */
1350
+ /** The Node ID of the BypassPullRequestAllowance object */
1351
1351
  id: Scalars['ID']['output'];
1352
1352
  };
1353
1353
  /** The connection type for BypassPullRequestAllowance. */
@@ -1385,7 +1385,7 @@ type Cwe = Node & {
1385
1385
  cweId: Scalars['String']['output'];
1386
1386
  /** A detailed description of this CWE */
1387
1387
  description: Scalars['String']['output'];
1388
- /** The Node ID of this object */
1388
+ /** The Node ID of the CWE object */
1389
1389
  id: Scalars['ID']['output'];
1390
1390
  /** The name of this CWE */
1391
1391
  name: Scalars['String']['output'];
@@ -1609,7 +1609,7 @@ type CheckRun = Node & RequirableByPullRequest & UniformResourceLocatable & {
1609
1609
  detailsUrl?: Maybe<Scalars['URI']['output']>;
1610
1610
  /** A reference for the check run on the integrator's system. */
1611
1611
  externalId?: Maybe<Scalars['String']['output']>;
1612
- /** The Node ID of this object */
1612
+ /** The Node ID of the CheckRun object */
1613
1613
  id: Scalars['ID']['output'];
1614
1614
  /** Whether this is required to pass before merging for a specific pull request. */
1615
1615
  isRequired: Scalars['Boolean']['output'];
@@ -1841,7 +1841,7 @@ type CheckSuite = Node & {
1841
1841
  creator?: Maybe<User>;
1842
1842
  /** Identifies the primary key from the database. */
1843
1843
  databaseId?: Maybe<Scalars['Int']['output']>;
1844
- /** The Node ID of this object */
1844
+ /** The Node ID of the CheckSuite object */
1845
1845
  id: Scalars['ID']['output'];
1846
1846
  /** A list of open pull requests matching the check suite. */
1847
1847
  matchingPullRequests?: Maybe<PullRequestConnection>;
@@ -2076,7 +2076,7 @@ type ClosedEvent = Node & UniformResourceLocatable & {
2076
2076
  closer?: Maybe<Closer>;
2077
2077
  /** Identifies the date and time when the object was created. */
2078
2078
  createdAt: Scalars['DateTime']['output'];
2079
- /** The Node ID of this object */
2079
+ /** The Node ID of the ClosedEvent object */
2080
2080
  id: Scalars['ID']['output'];
2081
2081
  /** The HTTP path for this closed event. */
2082
2082
  resourcePath: Scalars['URI']['output'];
@@ -2092,7 +2092,7 @@ type CodeOfConduct = Node & {
2092
2092
  __typename?: 'CodeOfConduct';
2093
2093
  /** The body of the Code of Conduct */
2094
2094
  body?: Maybe<Scalars['String']['output']>;
2095
- /** The Node ID of this object */
2095
+ /** The Node ID of the CodeOfConduct object */
2096
2096
  id: Scalars['ID']['output'];
2097
2097
  /** The key for the Code of Conduct */
2098
2098
  key: Scalars['String']['output'];
@@ -2196,7 +2196,7 @@ type CommentDeletedEvent = Node & {
2196
2196
  databaseId?: Maybe<Scalars['Int']['output']>;
2197
2197
  /** The user who authored the deleted comment. */
2198
2198
  deletedCommentAuthor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
2199
- /** The Node ID of this object */
2199
+ /** The Node ID of the CommentDeletedEvent object */
2200
2200
  id: Scalars['ID']['output'];
2201
2201
  };
2202
2202
  /** Represents a Git commit. */
@@ -2260,7 +2260,7 @@ type Commit = GitObject & Node & Subscribable & UniformResourceLocatable & {
2260
2260
  file?: Maybe<TreeEntry>;
2261
2261
  /** The linear commit history starting from (and including) this commit, in the same order as `git log`. */
2262
2262
  history: CommitHistoryConnection;
2263
- /** The Node ID of this object */
2263
+ /** The Node ID of the Commit object */
2264
2264
  id: Scalars['ID']['output'];
2265
2265
  /** The Git commit message */
2266
2266
  message: Scalars['String']['output'];
@@ -2446,7 +2446,7 @@ type CommitComment = Comment & Deletable & Minimizable & Node & Reactable & Repo
2446
2446
  databaseId?: Maybe<Scalars['Int']['output']>;
2447
2447
  /** The actor who edited the comment. */
2448
2448
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
2449
- /** The Node ID of this object */
2449
+ /** The Node ID of the CommitComment object */
2450
2450
  id: Scalars['ID']['output'];
2451
2451
  /** Check if this comment was edited and includes an edit with the creation data */
2452
2452
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -2536,7 +2536,7 @@ type CommitCommentThread = Node & RepositoryNode & {
2536
2536
  comments: CommitCommentConnection;
2537
2537
  /** The commit the comments were made on. */
2538
2538
  commit?: Maybe<Commit>;
2539
- /** The Node ID of this object */
2539
+ /** The Node ID of the CommitCommentThread object */
2540
2540
  id: Scalars['ID']['output'];
2541
2541
  /** The file the comments were made on. */
2542
2542
  path?: Maybe<Scalars['String']['output']>;
@@ -2714,7 +2714,7 @@ type Comparison = Node & {
2714
2714
  commits: ComparisonCommitConnection;
2715
2715
  /** The head revision of this comparison. */
2716
2716
  headTarget: Blob | Commit | Tag | Tree;
2717
- /** The Node ID of this object */
2717
+ /** The Node ID of the Comparison object */
2718
2718
  id: Scalars['ID']['output'];
2719
2719
  /** The status of this comparison. */
2720
2720
  status: ComparisonStatus;
@@ -2757,7 +2757,7 @@ type ConnectedEvent = Node & {
2757
2757
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
2758
2758
  /** Identifies the date and time when the object was created. */
2759
2759
  createdAt: Scalars['DateTime']['output'];
2760
- /** The Node ID of this object */
2760
+ /** The Node ID of the ConnectedEvent object */
2761
2761
  id: Scalars['ID']['output'];
2762
2762
  /** Reference originated in a different repository. */
2763
2763
  isCrossRepository: Scalars['Boolean']['output'];
@@ -3111,7 +3111,7 @@ type ConvertToDraftEvent = Node & UniformResourceLocatable & {
3111
3111
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
3112
3112
  /** Identifies the date and time when the object was created. */
3113
3113
  createdAt: Scalars['DateTime']['output'];
3114
- /** The Node ID of this object */
3114
+ /** The Node ID of the ConvertToDraftEvent object */
3115
3115
  id: Scalars['ID']['output'];
3116
3116
  /** PullRequest referenced by event. */
3117
3117
  pullRequest: PullRequest;
@@ -3129,7 +3129,7 @@ type ConvertedNoteToIssueEvent = Node & {
3129
3129
  createdAt: Scalars['DateTime']['output'];
3130
3130
  /** Identifies the primary key from the database. */
3131
3131
  databaseId?: Maybe<Scalars['Int']['output']>;
3132
- /** The Node ID of this object */
3132
+ /** The Node ID of the ConvertedNoteToIssueEvent object */
3133
3133
  id: Scalars['ID']['output'];
3134
3134
  };
3135
3135
  /** Represents a 'converted_to_discussion' event on a given issue. */
@@ -3141,7 +3141,7 @@ type ConvertedToDiscussionEvent = Node & {
3141
3141
  createdAt: Scalars['DateTime']['output'];
3142
3142
  /** The discussion that the issue was converted into. */
3143
3143
  discussion?: Maybe<Discussion>;
3144
- /** The Node ID of this object */
3144
+ /** The Node ID of the ConvertedToDiscussionEvent object */
3145
3145
  id: Scalars['ID']['output'];
3146
3146
  };
3147
3147
  /** Autogenerated input type of CopyProjectV2 */
@@ -4190,7 +4190,7 @@ type CrossReferencedEvent = Node & UniformResourceLocatable & {
4190
4190
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
4191
4191
  /** Identifies the date and time when the object was created. */
4192
4192
  createdAt: Scalars['DateTime']['output'];
4193
- /** The Node ID of this object */
4193
+ /** The Node ID of the CrossReferencedEvent object */
4194
4194
  id: Scalars['ID']['output'];
4195
4195
  /** Reference originated in a different repository. */
4196
4196
  isCrossRepository: Scalars['Boolean']['output'];
@@ -4623,7 +4623,7 @@ type DemilestonedEvent = Node & {
4623
4623
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
4624
4624
  /** Identifies the date and time when the object was created. */
4625
4625
  createdAt: Scalars['DateTime']['output'];
4626
- /** The Node ID of this object */
4626
+ /** The Node ID of the DemilestonedEvent object */
4627
4627
  id: Scalars['ID']['output'];
4628
4628
  /** Identifies the milestone title associated with the 'demilestoned' event. */
4629
4629
  milestoneTitle: Scalars['String']['output'];
@@ -4721,7 +4721,7 @@ type DeployedEvent = Node & {
4721
4721
  databaseId?: Maybe<Scalars['Int']['output']>;
4722
4722
  /** The deployment associated with the 'deployed' event. */
4723
4723
  deployment: Deployment;
4724
- /** The Node ID of this object */
4724
+ /** The Node ID of the DeployedEvent object */
4725
4725
  id: Scalars['ID']['output'];
4726
4726
  /** PullRequest referenced by event. */
4727
4727
  pullRequest: PullRequest;
@@ -4745,7 +4745,7 @@ type Deployment = Node & {
4745
4745
  description?: Maybe<Scalars['String']['output']>;
4746
4746
  /** The latest environment to which this deployment was made. */
4747
4747
  environment?: Maybe<Scalars['String']['output']>;
4748
- /** The Node ID of this object */
4748
+ /** The Node ID of the Deployment object */
4749
4749
  id: Scalars['ID']['output'];
4750
4750
  /** The latest environment to which this deployment was made. */
4751
4751
  latestEnvironment?: Maybe<Scalars['String']['output']>;
@@ -4804,7 +4804,7 @@ type DeploymentEnvironmentChangedEvent = Node & {
4804
4804
  createdAt: Scalars['DateTime']['output'];
4805
4805
  /** The deployment status that updated the deployment environment. */
4806
4806
  deploymentStatus: DeploymentStatus;
4807
- /** The Node ID of this object */
4807
+ /** The Node ID of the DeploymentEnvironmentChangedEvent object */
4808
4808
  id: Scalars['ID']['output'];
4809
4809
  /** PullRequest referenced by event. */
4810
4810
  pullRequest: PullRequest;
@@ -4917,7 +4917,7 @@ type DeploymentReview = Node & {
4917
4917
  databaseId?: Maybe<Scalars['Int']['output']>;
4918
4918
  /** The environments approved or rejected */
4919
4919
  environments: EnvironmentConnection;
4920
- /** The Node ID of this object */
4920
+ /** The Node ID of the DeploymentReview object */
4921
4921
  id: Scalars['ID']['output'];
4922
4922
  /** The decision of the user. */
4923
4923
  state: DeploymentReviewState;
@@ -5016,7 +5016,7 @@ type DeploymentStatus = Node & {
5016
5016
  description?: Maybe<Scalars['String']['output']>;
5017
5017
  /** Identifies the environment URL of the deployment. */
5018
5018
  environmentUrl?: Maybe<Scalars['URI']['output']>;
5019
- /** The Node ID of this object */
5019
+ /** The Node ID of the DeploymentStatus object */
5020
5020
  id: Scalars['ID']['output'];
5021
5021
  /** Identifies the log URL of the deployment. */
5022
5022
  logUrl?: Maybe<Scalars['URI']['output']>;
@@ -5108,7 +5108,7 @@ type DisconnectedEvent = Node & {
5108
5108
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5109
5109
  /** Identifies the date and time when the object was created. */
5110
5110
  createdAt: Scalars['DateTime']['output'];
5111
- /** The Node ID of this object */
5111
+ /** The Node ID of the DisconnectedEvent object */
5112
5112
  id: Scalars['ID']['output'];
5113
5113
  /** Reference originated in a different repository. */
5114
5114
  isCrossRepository: Scalars['Boolean']['output'];
@@ -5154,7 +5154,7 @@ type Discussion = Closable & Comment & Deletable & Labelable & Lockable & Node &
5154
5154
  databaseId?: Maybe<Scalars['Int']['output']>;
5155
5155
  /** The actor who edited the comment. */
5156
5156
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5157
- /** The Node ID of this object */
5157
+ /** The Node ID of the Discussion object */
5158
5158
  id: Scalars['ID']['output'];
5159
5159
  /** Check if this comment was edited and includes an edit with the creation data */
5160
5160
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -5255,7 +5255,7 @@ type DiscussionCategory = Node & RepositoryNode & {
5255
5255
  emoji: Scalars['String']['output'];
5256
5256
  /** This category's emoji rendered as HTML. */
5257
5257
  emojiHTML: Scalars['HTML']['output'];
5258
- /** The Node ID of this object */
5258
+ /** The Node ID of the DiscussionCategory object */
5259
5259
  id: Scalars['ID']['output'];
5260
5260
  /** Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation. */
5261
5261
  isAnswerable: Scalars['Boolean']['output'];
@@ -5321,7 +5321,7 @@ type DiscussionComment = Comment & Deletable & Minimizable & Node & Reactable &
5321
5321
  discussion?: Maybe<Discussion>;
5322
5322
  /** The actor who edited the comment. */
5323
5323
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5324
- /** The Node ID of this object */
5324
+ /** The Node ID of the DiscussionComment object */
5325
5325
  id: Scalars['ID']['output'];
5326
5326
  /** Check if this comment was edited and includes an edit with the creation data */
5327
5327
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -5459,7 +5459,7 @@ type DiscussionPoll = Node & {
5459
5459
  __typename?: 'DiscussionPoll';
5460
5460
  /** The discussion that this poll belongs to. */
5461
5461
  discussion?: Maybe<Discussion>;
5462
- /** The Node ID of this object */
5462
+ /** The Node ID of the DiscussionPoll object */
5463
5463
  id: Scalars['ID']['output'];
5464
5464
  /** The options for this poll. */
5465
5465
  options?: Maybe<DiscussionPollOptionConnection>;
@@ -5483,7 +5483,7 @@ type DiscussionPollOptionsArgs = {
5483
5483
  /** An option for a discussion poll. */
5484
5484
  type DiscussionPollOption = Node & {
5485
5485
  __typename?: 'DiscussionPollOption';
5486
- /** The Node ID of this object */
5486
+ /** The Node ID of the DiscussionPollOption object */
5487
5487
  id: Scalars['ID']['output'];
5488
5488
  /** The text for this option. */
5489
5489
  option: Scalars['String']['output'];
@@ -5604,7 +5604,7 @@ type DraftIssue = Node & {
5604
5604
  createdAt: Scalars['DateTime']['output'];
5605
5605
  /** The actor who created this draft issue. */
5606
5606
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
5607
- /** The Node ID of this object */
5607
+ /** The Node ID of the DraftIssue object */
5608
5608
  id: Scalars['ID']['output'];
5609
5609
  /** List of items linked with the draft issue (currently draft issue can be linked to only one item). */
5610
5610
  projectV2Items: ProjectV2ItemConnection;
@@ -5738,7 +5738,7 @@ type Enterprise = AnnouncementBanner & Node & {
5738
5738
  description?: Maybe<Scalars['String']['output']>;
5739
5739
  /** The description of the enterprise as HTML. */
5740
5740
  descriptionHTML: Scalars['HTML']['output'];
5741
- /** The Node ID of this object */
5741
+ /** The Node ID of the Enterprise object */
5742
5742
  id: Scalars['ID']['output'];
5743
5743
  /** The location of the enterprise. */
5744
5744
  location?: Maybe<Scalars['String']['output']>;
@@ -5822,7 +5822,7 @@ type EnterpriseAdministratorInvitation = Node & {
5822
5822
  email?: Maybe<Scalars['String']['output']>;
5823
5823
  /** The enterprise the invitation is for. */
5824
5824
  enterprise: Enterprise;
5825
- /** The Node ID of this object */
5825
+ /** The Node ID of the EnterpriseAdministratorInvitation object */
5826
5826
  id: Scalars['ID']['output'];
5827
5827
  /** The user who was invited to the enterprise. */
5828
5828
  invitee?: Maybe<User>;
@@ -5996,7 +5996,7 @@ type EnterpriseIdentityProvider = Node & {
5996
5996
  enterprise?: Maybe<Enterprise>;
5997
5997
  /** ExternalIdentities provisioned by this identity provider. */
5998
5998
  externalIdentities: ExternalIdentityConnection;
5999
- /** The Node ID of this object */
5999
+ /** The Node ID of the EnterpriseIdentityProvider object */
6000
6000
  id: Scalars['ID']['output'];
6001
6001
  /** The x509 certificate used by the identity provider to sign assertions and responses. */
6002
6002
  idpCertificate?: Maybe<Scalars['X509Certificate']['output']>;
@@ -6598,7 +6598,7 @@ type EnterprisePendingMemberInvitationEdge = {
6598
6598
  /** A subset of repository information queryable from an enterprise. */
6599
6599
  type EnterpriseRepositoryInfo = Node & {
6600
6600
  __typename?: 'EnterpriseRepositoryInfo';
6601
- /** The Node ID of this object */
6601
+ /** The Node ID of the EnterpriseRepositoryInfo object */
6602
6602
  id: Scalars['ID']['output'];
6603
6603
  /** Identifies if the repository is private or internal. */
6604
6604
  isPrivate: Scalars['Boolean']['output'];
@@ -6636,7 +6636,7 @@ type EnterpriseServerInstallation = Node & {
6636
6636
  customerName: Scalars['String']['output'];
6637
6637
  /** The host name of the Enterprise Server installation. */
6638
6638
  hostName: Scalars['String']['output'];
6639
- /** The Node ID of this object */
6639
+ /** The Node ID of the EnterpriseServerInstallation object */
6640
6640
  id: Scalars['ID']['output'];
6641
6641
  /** Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect. */
6642
6642
  isConnected: Scalars['Boolean']['output'];
@@ -6729,7 +6729,7 @@ type EnterpriseServerUserAccount = Node & {
6729
6729
  emails: EnterpriseServerUserAccountEmailConnection;
6730
6730
  /** The Enterprise Server installation on which this user account exists. */
6731
6731
  enterpriseServerInstallation: EnterpriseServerInstallation;
6732
- /** The Node ID of this object */
6732
+ /** The Node ID of the EnterpriseServerUserAccount object */
6733
6733
  id: Scalars['ID']['output'];
6734
6734
  /** Whether the user account is a site administrator on the Enterprise Server installation. */
6735
6735
  isSiteAdmin: Scalars['Boolean']['output'];
@@ -6779,7 +6779,7 @@ type EnterpriseServerUserAccountEmail = Node & {
6779
6779
  createdAt: Scalars['DateTime']['output'];
6780
6780
  /** The email address. */
6781
6781
  email: Scalars['String']['output'];
6782
- /** The Node ID of this object */
6782
+ /** The Node ID of the EnterpriseServerUserAccountEmail object */
6783
6783
  id: Scalars['ID']['output'];
6784
6784
  /** Indicates whether this is the primary email of the associated user account. */
6785
6785
  isPrimary: Scalars['Boolean']['output'];
@@ -6841,7 +6841,7 @@ type EnterpriseServerUserAccountsUpload = Node & {
6841
6841
  enterprise: Enterprise;
6842
6842
  /** The Enterprise Server installation for which this upload was generated. */
6843
6843
  enterpriseServerInstallation: EnterpriseServerInstallation;
6844
- /** The Node ID of this object */
6844
+ /** The Node ID of the EnterpriseServerUserAccountsUpload object */
6845
6845
  id: Scalars['ID']['output'];
6846
6846
  /** The name of the file uploaded. */
6847
6847
  name: Scalars['String']['output'];
@@ -6900,7 +6900,7 @@ type EnterpriseUserAccount = Actor & Node & {
6900
6900
  enterprise: Enterprise;
6901
6901
  /** A list of Enterprise Server installations this user is a member of. */
6902
6902
  enterpriseInstallations: EnterpriseServerInstallationMembershipConnection;
6903
- /** The Node ID of this object */
6903
+ /** The Node ID of the EnterpriseUserAccount object */
6904
6904
  id: Scalars['ID']['output'];
6905
6905
  /** An identifier for the enterprise user account, a login or email address */
6906
6906
  login: Scalars['String']['output'];
@@ -6963,7 +6963,7 @@ type Environment = Node & {
6963
6963
  __typename?: 'Environment';
6964
6964
  /** Identifies the primary key from the database. */
6965
6965
  databaseId?: Maybe<Scalars['Int']['output']>;
6966
- /** The Node ID of this object */
6966
+ /** The Node ID of the Environment object */
6967
6967
  id: Scalars['ID']['output'];
6968
6968
  /** The name of the environment */
6969
6969
  name: Scalars['String']['output'];
@@ -7021,7 +7021,7 @@ type ExternalIdentity = Node & {
7021
7021
  __typename?: 'ExternalIdentity';
7022
7022
  /** The GUID for this identity */
7023
7023
  guid: Scalars['String']['output'];
7024
- /** The Node ID of this object */
7024
+ /** The Node ID of the ExternalIdentity object */
7025
7025
  id: Scalars['ID']['output'];
7026
7026
  /** Organization invitation for this SCIM-provisioned external identity */
7027
7027
  organizationInvitation?: Maybe<OrganizationInvitation>;
@@ -7345,7 +7345,7 @@ type Gist = Node & Starrable & UniformResourceLocatable & {
7345
7345
  files?: Maybe<Array<Maybe<GistFile>>>;
7346
7346
  /** A list of forks associated with the gist */
7347
7347
  forks: GistConnection;
7348
- /** The Node ID of this object */
7348
+ /** The Node ID of the Gist object */
7349
7349
  id: Scalars['ID']['output'];
7350
7350
  /** Identifies if the gist is a fork. */
7351
7351
  isFork: Scalars['Boolean']['output'];
@@ -7421,7 +7421,7 @@ type GistComment = Comment & Deletable & Minimizable & Node & Updatable & Updata
7421
7421
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
7422
7422
  /** The associated gist. */
7423
7423
  gist: Gist;
7424
- /** The Node ID of this object */
7424
+ /** The Node ID of the GistComment object */
7425
7425
  id: Scalars['ID']['output'];
7426
7426
  /** Check if this comment was edited and includes an edit with the creation data */
7427
7427
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -7752,7 +7752,7 @@ type HeadRefDeletedEvent = Node & {
7752
7752
  headRef?: Maybe<Ref>;
7753
7753
  /** Identifies the name of the Ref associated with the `head_ref_deleted` event. */
7754
7754
  headRefName: Scalars['String']['output'];
7755
- /** The Node ID of this object */
7755
+ /** The Node ID of the HeadRefDeletedEvent object */
7756
7756
  id: Scalars['ID']['output'];
7757
7757
  /** PullRequest referenced by event. */
7758
7758
  pullRequest: PullRequest;
@@ -7768,7 +7768,7 @@ type HeadRefForcePushedEvent = Node & {
7768
7768
  beforeCommit?: Maybe<Commit>;
7769
7769
  /** Identifies the date and time when the object was created. */
7770
7770
  createdAt: Scalars['DateTime']['output'];
7771
- /** The Node ID of this object */
7771
+ /** The Node ID of the HeadRefForcePushedEvent object */
7772
7772
  id: Scalars['ID']['output'];
7773
7773
  /** PullRequest referenced by event. */
7774
7774
  pullRequest: PullRequest;
@@ -7782,7 +7782,7 @@ type HeadRefRestoredEvent = Node & {
7782
7782
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
7783
7783
  /** Identifies the date and time when the object was created. */
7784
7784
  createdAt: Scalars['DateTime']['output'];
7785
- /** The Node ID of this object */
7785
+ /** The Node ID of the HeadRefRestoredEvent object */
7786
7786
  id: Scalars['ID']['output'];
7787
7787
  /** PullRequest referenced by event. */
7788
7788
  pullRequest: PullRequest;
@@ -7842,7 +7842,7 @@ type IpAllowListEntry = Node & {
7842
7842
  allowListValue: Scalars['String']['output'];
7843
7843
  /** Identifies the date and time when the object was created. */
7844
7844
  createdAt: Scalars['DateTime']['output'];
7845
- /** The Node ID of this object */
7845
+ /** The Node ID of the IpAllowListEntry object */
7846
7846
  id: Scalars['ID']['output'];
7847
7847
  /** Whether the entry is currently active. */
7848
7848
  isActive: Scalars['Boolean']['output'];
@@ -7933,7 +7933,7 @@ type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lockable
7933
7933
  fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
7934
7934
  /** The hovercard information for this issue */
7935
7935
  hovercard: Hovercard;
7936
- /** The Node ID of this object */
7936
+ /** The Node ID of the Issue object */
7937
7937
  id: Scalars['ID']['output'];
7938
7938
  /** Check if this comment was edited and includes an edit with the creation data */
7939
7939
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -8174,7 +8174,7 @@ type IssueComment = Comment & Deletable & Minimizable & Node & Reactable & Repos
8174
8174
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
8175
8175
  /** Identifies the primary key from the database as a BigInt. */
8176
8176
  fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
8177
- /** The Node ID of this object */
8177
+ /** The Node ID of the IssueComment object */
8178
8178
  id: Scalars['ID']['output'];
8179
8179
  /** Check if this comment was edited and includes an edit with the creation data */
8180
8180
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -8544,7 +8544,7 @@ type Label = Node & {
8544
8544
  createdAt?: Maybe<Scalars['DateTime']['output']>;
8545
8545
  /** A brief description of this label. */
8546
8546
  description?: Maybe<Scalars['String']['output']>;
8547
- /** The Node ID of this object */
8547
+ /** The Node ID of the Label object */
8548
8548
  id: Scalars['ID']['output'];
8549
8549
  /** Indicates whether or not this is a default label. */
8550
8550
  isDefault: Scalars['Boolean']['output'];
@@ -8639,7 +8639,7 @@ type LabeledEvent = Node & {
8639
8639
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
8640
8640
  /** Identifies the date and time when the object was created. */
8641
8641
  createdAt: Scalars['DateTime']['output'];
8642
- /** The Node ID of this object */
8642
+ /** The Node ID of the LabeledEvent object */
8643
8643
  id: Scalars['ID']['output'];
8644
8644
  /** Identifies the label associated with the 'labeled' event. */
8645
8645
  label: Label;
@@ -8651,7 +8651,7 @@ type Language = Node & {
8651
8651
  __typename?: 'Language';
8652
8652
  /** The color defined for the current language. */
8653
8653
  color?: Maybe<Scalars['String']['output']>;
8654
- /** The Node ID of this object */
8654
+ /** The Node ID of the Language object */
8655
8655
  id: Scalars['ID']['output'];
8656
8656
  /** The name of the current language. */
8657
8657
  name: Scalars['String']['output'];
@@ -8702,7 +8702,7 @@ type License = Node & {
8702
8702
  featured: Scalars['Boolean']['output'];
8703
8703
  /** Whether the license should be displayed in license pickers */
8704
8704
  hidden: Scalars['Boolean']['output'];
8705
- /** The Node ID of this object */
8705
+ /** The Node ID of the License object */
8706
8706
  id: Scalars['ID']['output'];
8707
8707
  /** Instructions on how to implement the license */
8708
8708
  implementation?: Maybe<Scalars['String']['output']>;
@@ -8789,7 +8789,7 @@ type LinkRepositoryToProjectPayload = {
8789
8789
  /** A branch linked to an issue. */
8790
8790
  type LinkedBranch = Node & {
8791
8791
  __typename?: 'LinkedBranch';
8792
- /** The Node ID of this object */
8792
+ /** The Node ID of the LinkedBranch object */
8793
8793
  id: Scalars['ID']['output'];
8794
8794
  /** The branch's ref. */
8795
8795
  ref?: Maybe<Ref>;
@@ -8857,7 +8857,7 @@ type LockedEvent = Node & {
8857
8857
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
8858
8858
  /** Identifies the date and time when the object was created. */
8859
8859
  createdAt: Scalars['DateTime']['output'];
8860
- /** The Node ID of this object */
8860
+ /** The Node ID of the LockedEvent object */
8861
8861
  id: Scalars['ID']['output'];
8862
8862
  /** Reason that the conversation was locked (optional). */
8863
8863
  lockReason?: Maybe<LockReason>;
@@ -8877,7 +8877,7 @@ type Mannequin = Actor & Node & UniformResourceLocatable & {
8877
8877
  databaseId?: Maybe<Scalars['Int']['output']>;
8878
8878
  /** The mannequin's email on the source instance. */
8879
8879
  email?: Maybe<Scalars['String']['output']>;
8880
- /** The Node ID of this object */
8880
+ /** The Node ID of the Mannequin object */
8881
8881
  id: Scalars['ID']['output'];
8882
8882
  /** The username of the actor. */
8883
8883
  login: Scalars['String']['output'];
@@ -8998,7 +8998,7 @@ type MarkedAsDuplicateEvent = Node & {
8998
8998
  createdAt: Scalars['DateTime']['output'];
8999
8999
  /** The issue or pull request which has been marked as a duplicate of another. */
9000
9000
  duplicate?: Maybe<IssueOrPullRequest>;
9001
- /** The Node ID of this object */
9001
+ /** The Node ID of the MarkedAsDuplicateEvent object */
9002
9002
  id: Scalars['ID']['output'];
9003
9003
  /** Canonical and duplicate belong to different repositories. */
9004
9004
  isCrossRepository: Scalars['Boolean']['output'];
@@ -9010,7 +9010,7 @@ type MarketplaceCategory = Node & {
9010
9010
  description?: Maybe<Scalars['String']['output']>;
9011
9011
  /** The technical description of how apps listed in this category work with GitHub. */
9012
9012
  howItWorks?: Maybe<Scalars['String']['output']>;
9013
- /** The Node ID of this object */
9013
+ /** The Node ID of the MarketplaceCategory object */
9014
9014
  id: Scalars['ID']['output'];
9015
9015
  /** The category's name. */
9016
9016
  name: Scalars['String']['output'];
@@ -9056,7 +9056,7 @@ type MarketplaceListing = Node & {
9056
9056
  howItWorks?: Maybe<Scalars['String']['output']>;
9057
9057
  /** The listing's technical description rendered to HTML. */
9058
9058
  howItWorksHTML: Scalars['HTML']['output'];
9059
- /** The Node ID of this object */
9059
+ /** The Node ID of the MarketplaceListing object */
9060
9060
  id: Scalars['ID']['output'];
9061
9061
  /** URL to install the product to the viewer's account or organization. */
9062
9062
  installationUrl?: Maybe<Scalars['URI']['output']>;
@@ -9191,7 +9191,7 @@ type MemberFeatureRequestNotification = Node & {
9191
9191
  __typename?: 'MemberFeatureRequestNotification';
9192
9192
  /** Represents member feature request body containing organization name and the number of feature requests */
9193
9193
  body: Scalars['String']['output'];
9194
- /** The Node ID of this object */
9194
+ /** The Node ID of the MemberFeatureRequestNotification object */
9195
9195
  id: Scalars['ID']['output'];
9196
9196
  /** Represents member feature request notification title */
9197
9197
  title: Scalars['String']['output'];
@@ -9236,7 +9236,7 @@ type MembersCanDeleteReposClearAuditEntry = AuditEntry & EnterpriseAuditEntryDat
9236
9236
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
9237
9237
  /** The HTTP URL for this enterprise. */
9238
9238
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
9239
- /** The Node ID of this object */
9239
+ /** The Node ID of the MembersCanDeleteReposClearAuditEntry object */
9240
9240
  id: Scalars['ID']['output'];
9241
9241
  /** The corresponding operation type for the action */
9242
9242
  operationType?: Maybe<OperationType>;
@@ -9282,7 +9282,7 @@ type MembersCanDeleteReposDisableAuditEntry = AuditEntry & EnterpriseAuditEntryD
9282
9282
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
9283
9283
  /** The HTTP URL for this enterprise. */
9284
9284
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
9285
- /** The Node ID of this object */
9285
+ /** The Node ID of the MembersCanDeleteReposDisableAuditEntry object */
9286
9286
  id: Scalars['ID']['output'];
9287
9287
  /** The corresponding operation type for the action */
9288
9288
  operationType?: Maybe<OperationType>;
@@ -9328,7 +9328,7 @@ type MembersCanDeleteReposEnableAuditEntry = AuditEntry & EnterpriseAuditEntryDa
9328
9328
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
9329
9329
  /** The HTTP URL for this enterprise. */
9330
9330
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
9331
- /** The Node ID of this object */
9331
+ /** The Node ID of the MembersCanDeleteReposEnableAuditEntry object */
9332
9332
  id: Scalars['ID']['output'];
9333
9333
  /** The corresponding operation type for the action */
9334
9334
  operationType?: Maybe<OperationType>;
@@ -9358,7 +9358,7 @@ type MentionedEvent = Node & {
9358
9358
  createdAt: Scalars['DateTime']['output'];
9359
9359
  /** Identifies the primary key from the database. */
9360
9360
  databaseId?: Maybe<Scalars['Int']['output']>;
9361
- /** The Node ID of this object */
9361
+ /** The Node ID of the MentionedEvent object */
9362
9362
  id: Scalars['ID']['output'];
9363
9363
  };
9364
9364
  /** Autogenerated input type of MergeBranch */
@@ -9432,7 +9432,7 @@ type MergeQueue = Node & {
9432
9432
  configuration?: Maybe<MergeQueueConfiguration>;
9433
9433
  /** The entries in the queue */
9434
9434
  entries?: Maybe<MergeQueueEntryConnection>;
9435
- /** The Node ID of this object */
9435
+ /** The Node ID of the MergeQueue object */
9436
9436
  id: Scalars['ID']['output'];
9437
9437
  /** The estimated time in seconds until a newly added entry would be merged */
9438
9438
  nextEntryEstimatedTimeToMerge?: Maybe<Scalars['Int']['output']>;
@@ -9484,7 +9484,7 @@ type MergeQueueEntry = Node & {
9484
9484
  estimatedTimeToMerge?: Maybe<Scalars['Int']['output']>;
9485
9485
  /** The head commit for this entry */
9486
9486
  headCommit?: Maybe<Commit>;
9487
- /** The Node ID of this object */
9487
+ /** The Node ID of the MergeQueueEntry object */
9488
9488
  id: Scalars['ID']['output'];
9489
9489
  /** Whether this pull request should jump the queue */
9490
9490
  jump: Scalars['Boolean']['output'];
@@ -9554,7 +9554,7 @@ type MergedEvent = Node & UniformResourceLocatable & {
9554
9554
  commit?: Maybe<Commit>;
9555
9555
  /** Identifies the date and time when the object was created. */
9556
9556
  createdAt: Scalars['DateTime']['output'];
9557
- /** The Node ID of this object */
9557
+ /** The Node ID of the MergedEvent object */
9558
9558
  id: Scalars['ID']['output'];
9559
9559
  /** Identifies the Ref associated with the `merge` event. */
9560
9560
  mergeRef?: Maybe<Ref>;
@@ -9598,7 +9598,7 @@ type Migration = {
9598
9598
  /** A GitHub Enterprise Importer (GEI) migration source. */
9599
9599
  type MigrationSource = Node & {
9600
9600
  __typename?: 'MigrationSource';
9601
- /** The Node ID of this object */
9601
+ /** The Node ID of the MigrationSource object */
9602
9602
  id: Scalars['ID']['output'];
9603
9603
  /** The migration source name. */
9604
9604
  name: Scalars['String']['output'];
@@ -9646,7 +9646,7 @@ type Milestone = Closable & Node & UniformResourceLocatable & {
9646
9646
  description?: Maybe<Scalars['String']['output']>;
9647
9647
  /** Identifies the due date of the milestone. */
9648
9648
  dueOn?: Maybe<Scalars['DateTime']['output']>;
9649
- /** The Node ID of this object */
9649
+ /** The Node ID of the Milestone object */
9650
9650
  id: Scalars['ID']['output'];
9651
9651
  /** A list of issues associated with the milestone. */
9652
9652
  issues: IssueConnection;
@@ -9748,7 +9748,7 @@ type MilestonedEvent = Node & {
9748
9748
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
9749
9749
  /** Identifies the date and time when the object was created. */
9750
9750
  createdAt: Scalars['DateTime']['output'];
9751
- /** The Node ID of this object */
9751
+ /** The Node ID of the MilestonedEvent object */
9752
9752
  id: Scalars['ID']['output'];
9753
9753
  /** Identifies the milestone title associated with the 'milestoned' event. */
9754
9754
  milestoneTitle: Scalars['String']['output'];
@@ -9830,7 +9830,7 @@ type MovedColumnsInProjectEvent = Node & {
9830
9830
  createdAt: Scalars['DateTime']['output'];
9831
9831
  /** Identifies the primary key from the database. */
9832
9832
  databaseId?: Maybe<Scalars['Int']['output']>;
9833
- /** The Node ID of this object */
9833
+ /** The Node ID of the MovedColumnsInProjectEvent object */
9834
9834
  id: Scalars['ID']['output'];
9835
9835
  };
9836
9836
  /** The root query for implementing GraphQL mutations. */
@@ -11263,7 +11263,7 @@ type OidcProvider = Node & {
11263
11263
  enterprise?: Maybe<Enterprise>;
11264
11264
  /** ExternalIdentities provisioned by this identity provider. */
11265
11265
  externalIdentities: ExternalIdentityConnection;
11266
- /** The Node ID of this object */
11266
+ /** The Node ID of the OIDCProvider object */
11267
11267
  id: Scalars['ID']['output'];
11268
11268
  /** The OIDC identity provider type */
11269
11269
  providerType: OidcProviderType;
@@ -11320,7 +11320,7 @@ type OauthApplicationCreateAuditEntry = AuditEntry & Node & OauthApplicationAudi
11320
11320
  callbackUrl?: Maybe<Scalars['URI']['output']>;
11321
11321
  /** The time the action was initiated */
11322
11322
  createdAt: Scalars['PreciseDateTime']['output'];
11323
- /** The Node ID of this object */
11323
+ /** The Node ID of the OauthApplicationCreateAuditEntry object */
11324
11324
  id: Scalars['ID']['output'];
11325
11325
  /** The name of the OAuth application. */
11326
11326
  oauthApplicationName?: Maybe<Scalars['String']['output']>;
@@ -11400,7 +11400,7 @@ type OrgAddBillingManagerAuditEntry = AuditEntry & Node & OrganizationAuditEntry
11400
11400
  actorUrl?: Maybe<Scalars['URI']['output']>;
11401
11401
  /** The time the action was initiated */
11402
11402
  createdAt: Scalars['PreciseDateTime']['output'];
11403
- /** The Node ID of this object */
11403
+ /** The Node ID of the OrgAddBillingManagerAuditEntry object */
11404
11404
  id: Scalars['ID']['output'];
11405
11405
  /** The email address used to invite a billing manager for the organization. */
11406
11406
  invitationEmail?: Maybe<Scalars['String']['output']>;
@@ -11442,7 +11442,7 @@ type OrgAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
11442
11442
  actorUrl?: Maybe<Scalars['URI']['output']>;
11443
11443
  /** The time the action was initiated */
11444
11444
  createdAt: Scalars['PreciseDateTime']['output'];
11445
- /** The Node ID of this object */
11445
+ /** The Node ID of the OrgAddMemberAuditEntry object */
11446
11446
  id: Scalars['ID']['output'];
11447
11447
  /** The corresponding operation type for the action */
11448
11448
  operationType?: Maybe<OperationType>;
@@ -11498,7 +11498,7 @@ type OrgBlockUserAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
11498
11498
  blockedUserUrl?: Maybe<Scalars['URI']['output']>;
11499
11499
  /** The time the action was initiated */
11500
11500
  createdAt: Scalars['PreciseDateTime']['output'];
11501
- /** The Node ID of this object */
11501
+ /** The Node ID of the OrgBlockUserAuditEntry object */
11502
11502
  id: Scalars['ID']['output'];
11503
11503
  /** The corresponding operation type for the action */
11504
11504
  operationType?: Maybe<OperationType>;
@@ -11538,7 +11538,7 @@ type OrgConfigDisableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizat
11538
11538
  actorUrl?: Maybe<Scalars['URI']['output']>;
11539
11539
  /** The time the action was initiated */
11540
11540
  createdAt: Scalars['PreciseDateTime']['output'];
11541
- /** The Node ID of this object */
11541
+ /** The Node ID of the OrgConfigDisableCollaboratorsOnlyAuditEntry object */
11542
11542
  id: Scalars['ID']['output'];
11543
11543
  /** The corresponding operation type for the action */
11544
11544
  operationType?: Maybe<OperationType>;
@@ -11578,7 +11578,7 @@ type OrgConfigEnableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizati
11578
11578
  actorUrl?: Maybe<Scalars['URI']['output']>;
11579
11579
  /** The time the action was initiated */
11580
11580
  createdAt: Scalars['PreciseDateTime']['output'];
11581
- /** The Node ID of this object */
11581
+ /** The Node ID of the OrgConfigEnableCollaboratorsOnlyAuditEntry object */
11582
11582
  id: Scalars['ID']['output'];
11583
11583
  /** The corresponding operation type for the action */
11584
11584
  operationType?: Maybe<OperationType>;
@@ -11620,7 +11620,7 @@ type OrgCreateAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
11620
11620
  billingPlan?: Maybe<OrgCreateAuditEntryBillingPlan>;
11621
11621
  /** The time the action was initiated */
11622
11622
  createdAt: Scalars['PreciseDateTime']['output'];
11623
- /** The Node ID of this object */
11623
+ /** The Node ID of the OrgCreateAuditEntry object */
11624
11624
  id: Scalars['ID']['output'];
11625
11625
  /** The corresponding operation type for the action */
11626
11626
  operationType?: Maybe<OperationType>;
@@ -11672,7 +11672,7 @@ type OrgDisableOauthAppRestrictionsAuditEntry = AuditEntry & Node & Organization
11672
11672
  actorUrl?: Maybe<Scalars['URI']['output']>;
11673
11673
  /** The time the action was initiated */
11674
11674
  createdAt: Scalars['PreciseDateTime']['output'];
11675
- /** The Node ID of this object */
11675
+ /** The Node ID of the OrgDisableOauthAppRestrictionsAuditEntry object */
11676
11676
  id: Scalars['ID']['output'];
11677
11677
  /** The corresponding operation type for the action */
11678
11678
  operationType?: Maybe<OperationType>;
@@ -11714,7 +11714,7 @@ type OrgDisableSamlAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
11714
11714
  createdAt: Scalars['PreciseDateTime']['output'];
11715
11715
  /** The SAML provider's digest algorithm URL. */
11716
11716
  digestMethodUrl?: Maybe<Scalars['URI']['output']>;
11717
- /** The Node ID of this object */
11717
+ /** The Node ID of the OrgDisableSamlAuditEntry object */
11718
11718
  id: Scalars['ID']['output'];
11719
11719
  /** The SAML provider's issuer URL. */
11720
11720
  issuerUrl?: Maybe<Scalars['URI']['output']>;
@@ -11760,7 +11760,7 @@ type OrgDisableTwoFactorRequirementAuditEntry = AuditEntry & Node & Organization
11760
11760
  actorUrl?: Maybe<Scalars['URI']['output']>;
11761
11761
  /** The time the action was initiated */
11762
11762
  createdAt: Scalars['PreciseDateTime']['output'];
11763
- /** The Node ID of this object */
11763
+ /** The Node ID of the OrgDisableTwoFactorRequirementAuditEntry object */
11764
11764
  id: Scalars['ID']['output'];
11765
11765
  /** The corresponding operation type for the action */
11766
11766
  operationType?: Maybe<OperationType>;
@@ -11800,7 +11800,7 @@ type OrgEnableOauthAppRestrictionsAuditEntry = AuditEntry & Node & OrganizationA
11800
11800
  actorUrl?: Maybe<Scalars['URI']['output']>;
11801
11801
  /** The time the action was initiated */
11802
11802
  createdAt: Scalars['PreciseDateTime']['output'];
11803
- /** The Node ID of this object */
11803
+ /** The Node ID of the OrgEnableOauthAppRestrictionsAuditEntry object */
11804
11804
  id: Scalars['ID']['output'];
11805
11805
  /** The corresponding operation type for the action */
11806
11806
  operationType?: Maybe<OperationType>;
@@ -11842,7 +11842,7 @@ type OrgEnableSamlAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
11842
11842
  createdAt: Scalars['PreciseDateTime']['output'];
11843
11843
  /** The SAML provider's digest algorithm URL. */
11844
11844
  digestMethodUrl?: Maybe<Scalars['URI']['output']>;
11845
- /** The Node ID of this object */
11845
+ /** The Node ID of the OrgEnableSamlAuditEntry object */
11846
11846
  id: Scalars['ID']['output'];
11847
11847
  /** The SAML provider's issuer URL. */
11848
11848
  issuerUrl?: Maybe<Scalars['URI']['output']>;
@@ -11888,7 +11888,7 @@ type OrgEnableTwoFactorRequirementAuditEntry = AuditEntry & Node & OrganizationA
11888
11888
  actorUrl?: Maybe<Scalars['URI']['output']>;
11889
11889
  /** The time the action was initiated */
11890
11890
  createdAt: Scalars['PreciseDateTime']['output'];
11891
- /** The Node ID of this object */
11891
+ /** The Node ID of the OrgEnableTwoFactorRequirementAuditEntry object */
11892
11892
  id: Scalars['ID']['output'];
11893
11893
  /** The corresponding operation type for the action */
11894
11894
  operationType?: Maybe<OperationType>;
@@ -11941,7 +11941,7 @@ type OrgInviteMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
11941
11941
  createdAt: Scalars['PreciseDateTime']['output'];
11942
11942
  /** The email address of the organization invitation. */
11943
11943
  email?: Maybe<Scalars['String']['output']>;
11944
- /** The Node ID of this object */
11944
+ /** The Node ID of the OrgInviteMemberAuditEntry object */
11945
11945
  id: Scalars['ID']['output'];
11946
11946
  /** The corresponding operation type for the action */
11947
11947
  operationType?: Maybe<OperationType>;
@@ -11989,7 +11989,7 @@ type OrgInviteToBusinessAuditEntry = AuditEntry & EnterpriseAuditEntryData & Nod
11989
11989
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
11990
11990
  /** The HTTP URL for this enterprise. */
11991
11991
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
11992
- /** The Node ID of this object */
11992
+ /** The Node ID of the OrgInviteToBusinessAuditEntry object */
11993
11993
  id: Scalars['ID']['output'];
11994
11994
  /** The corresponding operation type for the action */
11995
11995
  operationType?: Maybe<OperationType>;
@@ -12029,7 +12029,7 @@ type OrgOauthAppAccessApprovedAuditEntry = AuditEntry & Node & OauthApplicationA
12029
12029
  actorUrl?: Maybe<Scalars['URI']['output']>;
12030
12030
  /** The time the action was initiated */
12031
12031
  createdAt: Scalars['PreciseDateTime']['output'];
12032
- /** The Node ID of this object */
12032
+ /** The Node ID of the OrgOauthAppAccessApprovedAuditEntry object */
12033
12033
  id: Scalars['ID']['output'];
12034
12034
  /** The name of the OAuth application. */
12035
12035
  oauthApplicationName?: Maybe<Scalars['String']['output']>;
@@ -12075,7 +12075,7 @@ type OrgOauthAppAccessBlockedAuditEntry = AuditEntry & Node & OauthApplicationAu
12075
12075
  actorUrl?: Maybe<Scalars['URI']['output']>;
12076
12076
  /** The time the action was initiated */
12077
12077
  createdAt: Scalars['PreciseDateTime']['output'];
12078
- /** The Node ID of this object */
12078
+ /** The Node ID of the OrgOauthAppAccessBlockedAuditEntry object */
12079
12079
  id: Scalars['ID']['output'];
12080
12080
  /** The name of the OAuth application. */
12081
12081
  oauthApplicationName?: Maybe<Scalars['String']['output']>;
@@ -12121,7 +12121,7 @@ type OrgOauthAppAccessDeniedAuditEntry = AuditEntry & Node & OauthApplicationAud
12121
12121
  actorUrl?: Maybe<Scalars['URI']['output']>;
12122
12122
  /** The time the action was initiated */
12123
12123
  createdAt: Scalars['PreciseDateTime']['output'];
12124
- /** The Node ID of this object */
12124
+ /** The Node ID of the OrgOauthAppAccessDeniedAuditEntry object */
12125
12125
  id: Scalars['ID']['output'];
12126
12126
  /** The name of the OAuth application. */
12127
12127
  oauthApplicationName?: Maybe<Scalars['String']['output']>;
@@ -12167,7 +12167,7 @@ type OrgOauthAppAccessRequestedAuditEntry = AuditEntry & Node & OauthApplication
12167
12167
  actorUrl?: Maybe<Scalars['URI']['output']>;
12168
12168
  /** The time the action was initiated */
12169
12169
  createdAt: Scalars['PreciseDateTime']['output'];
12170
- /** The Node ID of this object */
12170
+ /** The Node ID of the OrgOauthAppAccessRequestedAuditEntry object */
12171
12171
  id: Scalars['ID']['output'];
12172
12172
  /** The name of the OAuth application. */
12173
12173
  oauthApplicationName?: Maybe<Scalars['String']['output']>;
@@ -12213,7 +12213,7 @@ type OrgOauthAppAccessUnblockedAuditEntry = AuditEntry & Node & OauthApplication
12213
12213
  actorUrl?: Maybe<Scalars['URI']['output']>;
12214
12214
  /** The time the action was initiated */
12215
12215
  createdAt: Scalars['PreciseDateTime']['output'];
12216
- /** The Node ID of this object */
12216
+ /** The Node ID of the OrgOauthAppAccessUnblockedAuditEntry object */
12217
12217
  id: Scalars['ID']['output'];
12218
12218
  /** The name of the OAuth application. */
12219
12219
  oauthApplicationName?: Maybe<Scalars['String']['output']>;
@@ -12259,7 +12259,7 @@ type OrgRemoveBillingManagerAuditEntry = AuditEntry & Node & OrganizationAuditEn
12259
12259
  actorUrl?: Maybe<Scalars['URI']['output']>;
12260
12260
  /** The time the action was initiated */
12261
12261
  createdAt: Scalars['PreciseDateTime']['output'];
12262
- /** The Node ID of this object */
12262
+ /** The Node ID of the OrgRemoveBillingManagerAuditEntry object */
12263
12263
  id: Scalars['ID']['output'];
12264
12264
  /** The corresponding operation type for the action */
12265
12265
  operationType?: Maybe<OperationType>;
@@ -12309,7 +12309,7 @@ type OrgRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
12309
12309
  actorUrl?: Maybe<Scalars['URI']['output']>;
12310
12310
  /** The time the action was initiated */
12311
12311
  createdAt: Scalars['PreciseDateTime']['output'];
12312
- /** The Node ID of this object */
12312
+ /** The Node ID of the OrgRemoveMemberAuditEntry object */
12313
12313
  id: Scalars['ID']['output'];
12314
12314
  /** The types of membership the member has with the organization. */
12315
12315
  membershipTypes?: Maybe<Array<OrgRemoveMemberAuditEntryMembershipType>>;
@@ -12391,7 +12391,7 @@ type OrgRemoveOutsideCollaboratorAuditEntry = AuditEntry & Node & OrganizationAu
12391
12391
  actorUrl?: Maybe<Scalars['URI']['output']>;
12392
12392
  /** The time the action was initiated */
12393
12393
  createdAt: Scalars['PreciseDateTime']['output'];
12394
- /** The Node ID of this object */
12394
+ /** The Node ID of the OrgRemoveOutsideCollaboratorAuditEntry object */
12395
12395
  id: Scalars['ID']['output'];
12396
12396
  /** The types of membership the outside collaborator has with the organization. */
12397
12397
  membershipTypes?: Maybe<Array<OrgRemoveOutsideCollaboratorAuditEntryMembershipType>>;
@@ -12456,7 +12456,7 @@ type OrgRestoreMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
12456
12456
  actorUrl?: Maybe<Scalars['URI']['output']>;
12457
12457
  /** The time the action was initiated */
12458
12458
  createdAt: Scalars['PreciseDateTime']['output'];
12459
- /** The Node ID of this object */
12459
+ /** The Node ID of the OrgRestoreMemberAuditEntry object */
12460
12460
  id: Scalars['ID']['output'];
12461
12461
  /** The corresponding operation type for the action */
12462
12462
  operationType?: Maybe<OperationType>;
@@ -12556,7 +12556,7 @@ type OrgUnblockUserAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
12556
12556
  blockedUserUrl?: Maybe<Scalars['URI']['output']>;
12557
12557
  /** The time the action was initiated */
12558
12558
  createdAt: Scalars['PreciseDateTime']['output'];
12559
- /** The Node ID of this object */
12559
+ /** The Node ID of the OrgUnblockUserAuditEntry object */
12560
12560
  id: Scalars['ID']['output'];
12561
12561
  /** The corresponding operation type for the action */
12562
12562
  operationType?: Maybe<OperationType>;
@@ -12596,7 +12596,7 @@ type OrgUpdateDefaultRepositoryPermissionAuditEntry = AuditEntry & Node & Organi
12596
12596
  actorUrl?: Maybe<Scalars['URI']['output']>;
12597
12597
  /** The time the action was initiated */
12598
12598
  createdAt: Scalars['PreciseDateTime']['output'];
12599
- /** The Node ID of this object */
12599
+ /** The Node ID of the OrgUpdateDefaultRepositoryPermissionAuditEntry object */
12600
12600
  id: Scalars['ID']['output'];
12601
12601
  /** The corresponding operation type for the action */
12602
12602
  operationType?: Maybe<OperationType>;
@@ -12650,7 +12650,7 @@ type OrgUpdateMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
12650
12650
  actorUrl?: Maybe<Scalars['URI']['output']>;
12651
12651
  /** The time the action was initiated */
12652
12652
  createdAt: Scalars['PreciseDateTime']['output'];
12653
- /** The Node ID of this object */
12653
+ /** The Node ID of the OrgUpdateMemberAuditEntry object */
12654
12654
  id: Scalars['ID']['output'];
12655
12655
  /** The corresponding operation type for the action */
12656
12656
  operationType?: Maybe<OperationType>;
@@ -12702,7 +12702,7 @@ type OrgUpdateMemberRepositoryCreationPermissionAuditEntry = AuditEntry & Node &
12702
12702
  canCreateRepositories?: Maybe<Scalars['Boolean']['output']>;
12703
12703
  /** The time the action was initiated */
12704
12704
  createdAt: Scalars['PreciseDateTime']['output'];
12705
- /** The Node ID of this object */
12705
+ /** The Node ID of the OrgUpdateMemberRepositoryCreationPermissionAuditEntry object */
12706
12706
  id: Scalars['ID']['output'];
12707
12707
  /** The corresponding operation type for the action */
12708
12708
  operationType?: Maybe<OperationType>;
@@ -12764,7 +12764,7 @@ type OrgUpdateMemberRepositoryInvitationPermissionAuditEntry = AuditEntry & Node
12764
12764
  canInviteOutsideCollaboratorsToRepositories?: Maybe<Scalars['Boolean']['output']>;
12765
12765
  /** The time the action was initiated */
12766
12766
  createdAt: Scalars['PreciseDateTime']['output'];
12767
- /** The Node ID of this object */
12767
+ /** The Node ID of the OrgUpdateMemberRepositoryInvitationPermissionAuditEntry object */
12768
12768
  id: Scalars['ID']['output'];
12769
12769
  /** The corresponding operation type for the action */
12770
12770
  operationType?: Maybe<OperationType>;
@@ -12820,7 +12820,7 @@ type Organization = Actor & AnnouncementBanner & MemberStatusable & Node & Packa
12820
12820
  estimatedNextSponsorsPayoutInCents: Scalars['Int']['output'];
12821
12821
  /** True if this user/organization has a GitHub Sponsors listing. */
12822
12822
  hasSponsorsListing: Scalars['Boolean']['output'];
12823
- /** The Node ID of this object */
12823
+ /** The Node ID of the Organization object */
12824
12824
  id: Scalars['ID']['output'];
12825
12825
  /** The interaction ability settings for this organization. */
12826
12826
  interactionAbility?: Maybe<RepositoryInteractionAbility>;
@@ -13360,7 +13360,7 @@ type OrganizationIdentityProvider = Node & {
13360
13360
  digestMethod?: Maybe<Scalars['URI']['output']>;
13361
13361
  /** External Identities provisioned by this Identity Provider */
13362
13362
  externalIdentities: ExternalIdentityConnection;
13363
- /** The Node ID of this object */
13363
+ /** The Node ID of the OrganizationIdentityProvider object */
13364
13364
  id: Scalars['ID']['output'];
13365
13365
  /** The x509 certificate used by the Identity Provider to sign assertions and responses. */
13366
13366
  idpCertificate?: Maybe<Scalars['X509Certificate']['output']>;
@@ -13395,7 +13395,7 @@ type OrganizationInvitation = Node & {
13395
13395
  createdAt: Scalars['DateTime']['output'];
13396
13396
  /** The email address of the user invited to the organization. */
13397
13397
  email?: Maybe<Scalars['String']['output']>;
13398
- /** The Node ID of this object */
13398
+ /** The Node ID of the OrganizationInvitation object */
13399
13399
  id: Scalars['ID']['output'];
13400
13400
  /** The source of the invitation. */
13401
13401
  invitationSource: OrganizationInvitationSource;
@@ -13403,8 +13403,13 @@ type OrganizationInvitation = Node & {
13403
13403
  invitationType: OrganizationInvitationType;
13404
13404
  /** The user who was invited to the organization. */
13405
13405
  invitee?: Maybe<User>;
13406
- /** The user who created the invitation. */
13406
+ /**
13407
+ * The user who created the invitation.
13408
+ * @deprecated `inviter` will be removed. `inviter` will be replaced by `inviterActor`. Removal on 2024-07-01 UTC.
13409
+ */
13407
13410
  inviter: User;
13411
+ /** The user who created the invitation. */
13412
+ inviterActor?: Maybe<User>;
13408
13413
  /** The organization the invite is for */
13409
13414
  organization: Organization;
13410
13415
  /** The user's pending role in the organization (e.g. member, owner). */
@@ -13503,7 +13508,7 @@ type OrganizationMigration = Node & {
13503
13508
  databaseId?: Maybe<Scalars['String']['output']>;
13504
13509
  /** The reason the organization migration failed. */
13505
13510
  failureReason?: Maybe<Scalars['String']['output']>;
13506
- /** The Node ID of this object */
13511
+ /** The Node ID of the OrganizationMigration object */
13507
13512
  id: Scalars['ID']['output'];
13508
13513
  /** The remaining amount of repos to be migrated. */
13509
13514
  remainingRepositoriesCount?: Maybe<Scalars['Int']['output']>;
@@ -13601,7 +13606,7 @@ type OrganizationsHovercardContextRelevantOrganizationsArgs = {
13601
13606
  /** Information for an uploaded package. */
13602
13607
  type Package = Node & {
13603
13608
  __typename?: 'Package';
13604
- /** The Node ID of this object */
13609
+ /** The Node ID of the Package object */
13605
13610
  id: Scalars['ID']['output'];
13606
13611
  /** Find the latest version for the package. */
13607
13612
  latestVersion?: Maybe<PackageVersion>;
@@ -13653,7 +13658,7 @@ type PackageEdge = {
13653
13658
  /** A file in a package version. */
13654
13659
  type PackageFile = Node & {
13655
13660
  __typename?: 'PackageFile';
13656
- /** The Node ID of this object */
13661
+ /** The Node ID of the PackageFile object */
13657
13662
  id: Scalars['ID']['output'];
13658
13663
  /** MD5 hash of the file. */
13659
13664
  md5?: Maybe<Scalars['String']['output']>;
@@ -13741,7 +13746,7 @@ type PackageStatistics = {
13741
13746
  /** A version tag contains the mapping between a tag name and a version. */
13742
13747
  type PackageTag = Node & {
13743
13748
  __typename?: 'PackageTag';
13744
- /** The Node ID of this object */
13749
+ /** The Node ID of the PackageTag object */
13745
13750
  id: Scalars['ID']['output'];
13746
13751
  /** Identifies the tag name of the version. */
13747
13752
  name: Scalars['String']['output'];
@@ -13769,7 +13774,7 @@ type PackageVersion = Node & {
13769
13774
  __typename?: 'PackageVersion';
13770
13775
  /** List of files associated with this package version */
13771
13776
  files: PackageFileConnection;
13772
- /** The Node ID of this object */
13777
+ /** The Node ID of the PackageVersion object */
13773
13778
  id: Scalars['ID']['output'];
13774
13779
  /** The package associated with this version. */
13775
13780
  package?: Maybe<Package>;
@@ -13939,7 +13944,7 @@ type PinnedDiscussion = Node & RepositoryNode & {
13939
13944
  discussion: Discussion;
13940
13945
  /** Color stops of the chosen gradient */
13941
13946
  gradientStopColors: Array<Scalars['String']['output']>;
13942
- /** The Node ID of this object */
13947
+ /** The Node ID of the PinnedDiscussion object */
13943
13948
  id: Scalars['ID']['output'];
13944
13949
  /** Background texture pattern */
13945
13950
  pattern: PinnedDiscussionPattern;
@@ -14005,7 +14010,7 @@ type PinnedEvent = Node & {
14005
14010
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
14006
14011
  /** Identifies the date and time when the object was created. */
14007
14012
  createdAt: Scalars['DateTime']['output'];
14008
- /** The Node ID of this object */
14013
+ /** The Node ID of the PinnedEvent object */
14009
14014
  id: Scalars['ID']['output'];
14010
14015
  /** Identifies the issue associated with the event. */
14011
14016
  issue: Issue;
@@ -14017,7 +14022,7 @@ type PinnedIssue = Node & {
14017
14022
  databaseId?: Maybe<Scalars['Int']['output']>;
14018
14023
  /** Identifies the primary key from the database as a BigInt. */
14019
14024
  fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
14020
- /** The Node ID of this object */
14025
+ /** The Node ID of the PinnedIssue object */
14021
14026
  id: Scalars['ID']['output'];
14022
14027
  /** The issue that was pinned. */
14023
14028
  issue: Issue;
@@ -14071,7 +14076,7 @@ type PrivateRepositoryForkingDisableAuditEntry = AuditEntry & EnterpriseAuditEnt
14071
14076
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
14072
14077
  /** The HTTP URL for this enterprise. */
14073
14078
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
14074
- /** The Node ID of this object */
14079
+ /** The Node ID of the PrivateRepositoryForkingDisableAuditEntry object */
14075
14080
  id: Scalars['ID']['output'];
14076
14081
  /** The corresponding operation type for the action */
14077
14082
  operationType?: Maybe<OperationType>;
@@ -14125,7 +14130,7 @@ type PrivateRepositoryForkingEnableAuditEntry = AuditEntry & EnterpriseAuditEntr
14125
14130
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
14126
14131
  /** The HTTP URL for this enterprise. */
14127
14132
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
14128
- /** The Node ID of this object */
14133
+ /** The Node ID of the PrivateRepositoryForkingEnableAuditEntry object */
14129
14134
  id: Scalars['ID']['output'];
14130
14135
  /** The corresponding operation type for the action */
14131
14136
  operationType?: Maybe<OperationType>;
@@ -14248,7 +14253,7 @@ type Project = Closable & Node & Updatable & {
14248
14253
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
14249
14254
  /** Identifies the primary key from the database. */
14250
14255
  databaseId?: Maybe<Scalars['Int']['output']>;
14251
- /** The Node ID of this object */
14256
+ /** The Node ID of the Project object */
14252
14257
  id: Scalars['ID']['output'];
14253
14258
  /** The project's name. */
14254
14259
  name: Scalars['String']['output'];
@@ -14308,7 +14313,7 @@ type ProjectCard = Node & {
14308
14313
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
14309
14314
  /** Identifies the primary key from the database. */
14310
14315
  databaseId?: Maybe<Scalars['Int']['output']>;
14311
- /** The Node ID of this object */
14316
+ /** The Node ID of the ProjectCard object */
14312
14317
  id: Scalars['ID']['output'];
14313
14318
  /** Whether the card is archived */
14314
14319
  isArchived: Scalars['Boolean']['output'];
@@ -14370,7 +14375,7 @@ type ProjectColumn = Node & {
14370
14375
  createdAt: Scalars['DateTime']['output'];
14371
14376
  /** Identifies the primary key from the database. */
14372
14377
  databaseId?: Maybe<Scalars['Int']['output']>;
14373
- /** The Node ID of this object */
14378
+ /** The Node ID of the ProjectColumn object */
14374
14379
  id: Scalars['ID']['output'];
14375
14380
  /** The project column's name. */
14376
14381
  name: Scalars['String']['output'];
@@ -14536,7 +14541,7 @@ type ProjectV2 = Closable & Node & Updatable & {
14536
14541
  field?: Maybe<ProjectV2FieldConfiguration>;
14537
14542
  /** List of fields and their constraints in the project */
14538
14543
  fields: ProjectV2FieldConfigurationConnection;
14539
- /** The Node ID of this object */
14544
+ /** The Node ID of the ProjectV2 object */
14540
14545
  id: Scalars['ID']['output'];
14541
14546
  /** List of items in the project */
14542
14547
  items: ProjectV2ItemConnection;
@@ -14709,7 +14714,7 @@ type ProjectV2Field = Node & ProjectV2FieldCommon & {
14709
14714
  dataType: ProjectV2FieldType;
14710
14715
  /** Identifies the primary key from the database. */
14711
14716
  databaseId?: Maybe<Scalars['Int']['output']>;
14712
- /** The Node ID of this object */
14717
+ /** The Node ID of the ProjectV2Field object */
14713
14718
  id: Scalars['ID']['output'];
14714
14719
  /** The project field's name. */
14715
14720
  name: Scalars['String']['output'];
@@ -14855,7 +14860,7 @@ type ProjectV2Item = Node & {
14855
14860
  fieldValueByName?: Maybe<ProjectV2ItemFieldValue>;
14856
14861
  /** The field values that are set on the item. */
14857
14862
  fieldValues: ProjectV2ItemFieldValueConnection;
14858
- /** The Node ID of this object */
14863
+ /** The Node ID of the ProjectV2Item object */
14859
14864
  id: Scalars['ID']['output'];
14860
14865
  /** Whether the item is archived. */
14861
14866
  isArchived: Scalars['Boolean']['output'];
@@ -14913,7 +14918,7 @@ type ProjectV2ItemFieldDateValue = Node & ProjectV2ItemFieldValueCommon & {
14913
14918
  date?: Maybe<Scalars['Date']['output']>;
14914
14919
  /** The project field that contains this value. */
14915
14920
  field: ProjectV2FieldConfiguration;
14916
- /** The Node ID of this object */
14921
+ /** The Node ID of the ProjectV2ItemFieldDateValue object */
14917
14922
  id: Scalars['ID']['output'];
14918
14923
  /** The project item that contains this value. */
14919
14924
  item: ProjectV2Item;
@@ -14933,7 +14938,7 @@ type ProjectV2ItemFieldIterationValue = Node & ProjectV2ItemFieldValueCommon & {
14933
14938
  duration: Scalars['Int']['output'];
14934
14939
  /** The project field that contains this value. */
14935
14940
  field: ProjectV2FieldConfiguration;
14936
- /** The Node ID of this object */
14941
+ /** The Node ID of the ProjectV2ItemFieldIterationValue object */
14937
14942
  id: Scalars['ID']['output'];
14938
14943
  /** The project item that contains this value. */
14939
14944
  item: ProjectV2Item;
@@ -14982,7 +14987,7 @@ type ProjectV2ItemFieldNumberValue = Node & ProjectV2ItemFieldValueCommon & {
14982
14987
  databaseId?: Maybe<Scalars['Int']['output']>;
14983
14988
  /** The project field that contains this value. */
14984
14989
  field: ProjectV2FieldConfiguration;
14985
- /** The Node ID of this object */
14990
+ /** The Node ID of the ProjectV2ItemFieldNumberValue object */
14986
14991
  id: Scalars['ID']['output'];
14987
14992
  /** The project item that contains this value. */
14988
14993
  item: ProjectV2Item;
@@ -15047,7 +15052,7 @@ type ProjectV2ItemFieldSingleSelectValue = Node & ProjectV2ItemFieldValueCommon
15047
15052
  descriptionHTML?: Maybe<Scalars['String']['output']>;
15048
15053
  /** The project field that contains this value. */
15049
15054
  field: ProjectV2FieldConfiguration;
15050
- /** The Node ID of this object */
15055
+ /** The Node ID of the ProjectV2ItemFieldSingleSelectValue object */
15051
15056
  id: Scalars['ID']['output'];
15052
15057
  /** The project item that contains this value. */
15053
15058
  item: ProjectV2Item;
@@ -15071,7 +15076,7 @@ type ProjectV2ItemFieldTextValue = Node & ProjectV2ItemFieldValueCommon & {
15071
15076
  databaseId?: Maybe<Scalars['Int']['output']>;
15072
15077
  /** The project field that contains this value. */
15073
15078
  field: ProjectV2FieldConfiguration;
15074
- /** The Node ID of this object */
15079
+ /** The Node ID of the ProjectV2ItemFieldTextValue object */
15075
15080
  id: Scalars['ID']['output'];
15076
15081
  /** The project item that contains this value. */
15077
15082
  item: ProjectV2Item;
@@ -15177,7 +15182,7 @@ type ProjectV2IterationField = Node & ProjectV2FieldCommon & {
15177
15182
  dataType: ProjectV2FieldType;
15178
15183
  /** Identifies the primary key from the database. */
15179
15184
  databaseId?: Maybe<Scalars['Int']['output']>;
15180
- /** The Node ID of this object */
15185
+ /** The Node ID of the ProjectV2IterationField object */
15181
15186
  id: Scalars['ID']['output'];
15182
15187
  /** The project field's name. */
15183
15188
  name: Scalars['String']['output'];
@@ -15282,7 +15287,7 @@ type ProjectV2SingleSelectField = Node & ProjectV2FieldCommon & {
15282
15287
  dataType: ProjectV2FieldType;
15283
15288
  /** Identifies the primary key from the database. */
15284
15289
  databaseId?: Maybe<Scalars['Int']['output']>;
15285
- /** The Node ID of this object */
15290
+ /** The Node ID of the ProjectV2SingleSelectField object */
15286
15291
  id: Scalars['ID']['output'];
15287
15292
  /** The project field's name. */
15288
15293
  name: Scalars['String']['output'];
@@ -15420,7 +15425,7 @@ type ProjectV2View = Node & {
15420
15425
  groupBy?: Maybe<ProjectV2FieldConnection>;
15421
15426
  /** The view's group-by field. */
15422
15427
  groupByFields?: Maybe<ProjectV2FieldConfigurationConnection>;
15423
- /** The Node ID of this object */
15428
+ /** The Node ID of the ProjectV2View object */
15424
15429
  id: Scalars['ID']['output'];
15425
15430
  /** The project view's layout. */
15426
15431
  layout: ProjectV2ViewLayout;
@@ -15566,7 +15571,7 @@ type ProjectV2Workflow = Node & {
15566
15571
  databaseId?: Maybe<Scalars['Int']['output']>;
15567
15572
  /** Whether the workflow is enabled. */
15568
15573
  enabled: Scalars['Boolean']['output'];
15569
- /** The Node ID of this object */
15574
+ /** The Node ID of the ProjectV2Workflow object */
15570
15575
  id: Scalars['ID']['output'];
15571
15576
  /** The name of the workflow. */
15572
15577
  name: Scalars['String']['output'];
@@ -15626,7 +15631,7 @@ type PublicKey = Node & {
15626
15631
  createdAt?: Maybe<Scalars['DateTime']['output']>;
15627
15632
  /** The fingerprint for this PublicKey. */
15628
15633
  fingerprint: Scalars['String']['output'];
15629
- /** The Node ID of this object */
15634
+ /** The Node ID of the PublicKey object */
15630
15635
  id: Scalars['ID']['output'];
15631
15636
  /** Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user. */
15632
15637
  isReadOnly?: Maybe<Scalars['Boolean']['output']>;
@@ -15743,7 +15748,7 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
15743
15748
  headRepositoryOwner?: Maybe<Organization | User>;
15744
15749
  /** The hovercard information for this issue */
15745
15750
  hovercard: Hovercard;
15746
- /** The Node ID of this object */
15751
+ /** The Node ID of the PullRequest object */
15747
15752
  id: Scalars['ID']['output'];
15748
15753
  /** Check if this comment was edited and includes an edit with the creation data */
15749
15754
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -16098,7 +16103,7 @@ type PullRequestCommit = Node & UniformResourceLocatable & {
16098
16103
  __typename?: 'PullRequestCommit';
16099
16104
  /** The Git commit object */
16100
16105
  commit: Commit;
16101
- /** The Node ID of this object */
16106
+ /** The Node ID of the PullRequestCommit object */
16102
16107
  id: Scalars['ID']['output'];
16103
16108
  /** The pull request this commit belongs to */
16104
16109
  pullRequest: PullRequest;
@@ -16114,7 +16119,7 @@ type PullRequestCommitCommentThread = Node & RepositoryNode & {
16114
16119
  comments: CommitCommentConnection;
16115
16120
  /** The commit the comments were made on. */
16116
16121
  commit: Commit;
16117
- /** The Node ID of this object */
16122
+ /** The Node ID of the PullRequestCommitCommentThread object */
16118
16123
  id: Scalars['ID']['output'];
16119
16124
  /** The file the comments were made on. */
16120
16125
  path?: Maybe<Scalars['String']['output']>;
@@ -16263,7 +16268,7 @@ type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable &
16263
16268
  databaseId?: Maybe<Scalars['Int']['output']>;
16264
16269
  /** The actor who edited the comment. */
16265
16270
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
16266
- /** The Node ID of this object */
16271
+ /** The Node ID of the PullRequestReview object */
16267
16272
  id: Scalars['ID']['output'];
16268
16273
  /** Check if this comment was edited and includes an edit with the creation data */
16269
16274
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -16371,7 +16376,7 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
16371
16376
  draftedAt: Scalars['DateTime']['output'];
16372
16377
  /** The actor who edited the comment. */
16373
16378
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
16374
- /** The Node ID of this object */
16379
+ /** The Node ID of the PullRequestReviewComment object */
16375
16380
  id: Scalars['ID']['output'];
16376
16381
  /** Check if this comment was edited and includes an edit with the creation data */
16377
16382
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -16563,7 +16568,7 @@ type PullRequestReviewThread = Node & {
16563
16568
  comments: PullRequestReviewCommentConnection;
16564
16569
  /** The side of the diff on which this thread was placed. */
16565
16570
  diffSide: DiffSide;
16566
- /** The Node ID of this object */
16571
+ /** The Node ID of the PullRequestReviewThread object */
16567
16572
  id: Scalars['ID']['output'];
16568
16573
  /** Whether or not the thread has been collapsed (resolved) */
16569
16574
  isCollapsed: Scalars['Boolean']['output'];
@@ -16667,7 +16672,7 @@ type PullRequestThread = Node & {
16667
16672
  comments: PullRequestReviewCommentConnection;
16668
16673
  /** The side of the diff on which this thread was placed. */
16669
16674
  diffSide: DiffSide;
16670
- /** The Node ID of this object */
16675
+ /** The Node ID of the PullRequestThread object */
16671
16676
  id: Scalars['ID']['output'];
16672
16677
  /** Whether or not the thread has been collapsed (resolved) */
16673
16678
  isCollapsed: Scalars['Boolean']['output'];
@@ -16883,7 +16888,7 @@ type PullRequestUpdateState =
16883
16888
  /** A Git push. */
16884
16889
  type Push = Node & {
16885
16890
  __typename?: 'Push';
16886
- /** The Node ID of this object */
16891
+ /** The Node ID of the Push object */
16887
16892
  id: Scalars['ID']['output'];
16888
16893
  /** The SHA after the push */
16889
16894
  nextSha?: Maybe<Scalars['GitObjectID']['output']>;
@@ -16903,7 +16908,7 @@ type PushAllowance = Node & {
16903
16908
  actor?: Maybe<PushAllowanceActor>;
16904
16909
  /** Identifies the branch protection rule associated with the allowed user, team, or app. */
16905
16910
  branchProtectionRule?: Maybe<BranchProtectionRule>;
16906
- /** The Node ID of this object */
16911
+ /** The Node ID of the PushAllowance object */
16907
16912
  id: Scalars['ID']['output'];
16908
16913
  };
16909
16914
  /** Types that can be an actor. */
@@ -17200,7 +17205,7 @@ type Reaction = Node & {
17200
17205
  createdAt: Scalars['DateTime']['output'];
17201
17206
  /** Identifies the primary key from the database. */
17202
17207
  databaseId?: Maybe<Scalars['Int']['output']>;
17203
- /** The Node ID of this object */
17208
+ /** The Node ID of the Reaction object */
17204
17209
  id: Scalars['ID']['output'];
17205
17210
  /** The reactable piece of content */
17206
17211
  reactable: CommitComment | Discussion | DiscussionComment | Issue | IssueComment | PullRequest | PullRequestReview | PullRequestReviewComment | Release | TeamDiscussion | TeamDiscussionComment;
@@ -17322,7 +17327,7 @@ type ReadyForReviewEvent = Node & UniformResourceLocatable & {
17322
17327
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
17323
17328
  /** Identifies the date and time when the object was created. */
17324
17329
  createdAt: Scalars['DateTime']['output'];
17325
- /** The Node ID of this object */
17330
+ /** The Node ID of the ReadyForReviewEvent object */
17326
17331
  id: Scalars['ID']['output'];
17327
17332
  /** PullRequest referenced by event. */
17328
17333
  pullRequest: PullRequest;
@@ -17340,7 +17345,7 @@ type Ref = Node & {
17340
17345
  branchProtectionRule?: Maybe<BranchProtectionRule>;
17341
17346
  /** Compares the current ref as a base ref to another head ref, if the comparison can be made. */
17342
17347
  compare?: Maybe<Comparison>;
17343
- /** The Node ID of this object */
17348
+ /** The Node ID of the Ref object */
17344
17349
  id: Scalars['ID']['output'];
17345
17350
  /** The ref name. */
17346
17351
  name: Scalars['String']['output'];
@@ -17350,6 +17355,8 @@ type Ref = Node & {
17350
17355
  refUpdateRule?: Maybe<RefUpdateRule>;
17351
17356
  /** The repository the ref belongs to. */
17352
17357
  repository: Repository;
17358
+ /** A list of rules from active Repository and Organization rulesets that apply to this ref. */
17359
+ rules?: Maybe<RepositoryRuleConnection>;
17353
17360
  /** The object the ref points to. Returns null when object does not exist. */
17354
17361
  target?: Maybe<Blob | Commit | Tag | Tree>;
17355
17362
  };
@@ -17369,6 +17376,14 @@ type RefAssociatedPullRequestsArgs = {
17369
17376
  type RefCompareArgs = {
17370
17377
  headRef: Scalars['String']['input'];
17371
17378
  };
17379
+ /** Represents a Git reference. */
17380
+ type RefRulesArgs = {
17381
+ after?: InputMaybe<Scalars['String']['input']>;
17382
+ before?: InputMaybe<Scalars['String']['input']>;
17383
+ first?: InputMaybe<Scalars['Int']['input']>;
17384
+ last?: InputMaybe<Scalars['Int']['input']>;
17385
+ orderBy?: InputMaybe<RepositoryRuleOrder>;
17386
+ };
17372
17387
  /** The connection type for Ref. */
17373
17388
  type RefConnection = {
17374
17389
  __typename?: 'RefConnection';
@@ -17464,7 +17479,7 @@ type ReferencedEvent = Node & {
17464
17479
  commitRepository: Repository;
17465
17480
  /** Identifies the date and time when the object was created. */
17466
17481
  createdAt: Scalars['DateTime']['output'];
17467
- /** The Node ID of this object */
17482
+ /** The Node ID of the ReferencedEvent object */
17468
17483
  id: Scalars['ID']['output'];
17469
17484
  /** Reference originated in a different repository. */
17470
17485
  isCrossRepository: Scalars['Boolean']['output'];
@@ -17537,7 +17552,7 @@ type Release = Node & Reactable & UniformResourceLocatable & {
17537
17552
  description?: Maybe<Scalars['String']['output']>;
17538
17553
  /** The description of this release rendered to HTML. */
17539
17554
  descriptionHTML?: Maybe<Scalars['HTML']['output']>;
17540
- /** The Node ID of this object */
17555
+ /** The Node ID of the Release object */
17541
17556
  id: Scalars['ID']['output'];
17542
17557
  /** Whether or not the release is a draft */
17543
17558
  isDraft: Scalars['Boolean']['output'];
@@ -17615,7 +17630,7 @@ type ReleaseAsset = Node & {
17615
17630
  downloadCount: Scalars['Int']['output'];
17616
17631
  /** Identifies the URL where you can download the release asset via the browser. */
17617
17632
  downloadUrl: Scalars['URI']['output'];
17618
- /** The Node ID of this object */
17633
+ /** The Node ID of the ReleaseAsset object */
17619
17634
  id: Scalars['ID']['output'];
17620
17635
  /** Identifies the title of the release asset. */
17621
17636
  name: Scalars['String']['output'];
@@ -17893,7 +17908,7 @@ type RemovedFromMergeQueueEvent = Node & {
17893
17908
  createdAt: Scalars['DateTime']['output'];
17894
17909
  /** The user who removed this Pull Request from the merge queue */
17895
17910
  enqueuer?: Maybe<User>;
17896
- /** The Node ID of this object */
17911
+ /** The Node ID of the RemovedFromMergeQueueEvent object */
17897
17912
  id: Scalars['ID']['output'];
17898
17913
  /** The merge queue where this pull request was removed from. */
17899
17914
  mergeQueue?: Maybe<MergeQueue>;
@@ -17911,7 +17926,7 @@ type RemovedFromProjectEvent = Node & {
17911
17926
  createdAt: Scalars['DateTime']['output'];
17912
17927
  /** Identifies the primary key from the database. */
17913
17928
  databaseId?: Maybe<Scalars['Int']['output']>;
17914
- /** The Node ID of this object */
17929
+ /** The Node ID of the RemovedFromProjectEvent object */
17915
17930
  id: Scalars['ID']['output'];
17916
17931
  };
17917
17932
  /** Represents a 'renamed' event on a given issue or pull request */
@@ -17923,7 +17938,7 @@ type RenamedTitleEvent = Node & {
17923
17938
  createdAt: Scalars['DateTime']['output'];
17924
17939
  /** Identifies the current title of the issue or pull request. */
17925
17940
  currentTitle: Scalars['String']['output'];
17926
- /** The Node ID of this object */
17941
+ /** The Node ID of the RenamedTitleEvent object */
17927
17942
  id: Scalars['ID']['output'];
17928
17943
  /** Identifies the previous title of the issue or pull request. */
17929
17944
  previousTitle: Scalars['String']['output'];
@@ -17986,7 +18001,7 @@ type ReopenedEvent = Node & {
17986
18001
  closable: Discussion | Issue | Milestone | Project | ProjectV2 | PullRequest;
17987
18002
  /** Identifies the date and time when the object was created. */
17988
18003
  createdAt: Scalars['DateTime']['output'];
17989
- /** The Node ID of this object */
18004
+ /** The Node ID of the ReopenedEvent object */
17990
18005
  id: Scalars['ID']['output'];
17991
18006
  /** The reason the issue state was changed to open. */
17992
18007
  stateReason?: Maybe<IssueStateReason>;
@@ -18010,7 +18025,7 @@ type RepoAccessAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
18010
18025
  actorUrl?: Maybe<Scalars['URI']['output']>;
18011
18026
  /** The time the action was initiated */
18012
18027
  createdAt: Scalars['PreciseDateTime']['output'];
18013
- /** The Node ID of this object */
18028
+ /** The Node ID of the RepoAccessAuditEntry object */
18014
18029
  id: Scalars['ID']['output'];
18015
18030
  /** The corresponding operation type for the action */
18016
18031
  operationType?: Maybe<OperationType>;
@@ -18068,7 +18083,7 @@ type RepoAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
18068
18083
  actorUrl?: Maybe<Scalars['URI']['output']>;
18069
18084
  /** The time the action was initiated */
18070
18085
  createdAt: Scalars['PreciseDateTime']['output'];
18071
- /** The Node ID of this object */
18086
+ /** The Node ID of the RepoAddMemberAuditEntry object */
18072
18087
  id: Scalars['ID']['output'];
18073
18088
  /** The corresponding operation type for the action */
18074
18089
  operationType?: Maybe<OperationType>;
@@ -18126,7 +18141,7 @@ type RepoAddTopicAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & R
18126
18141
  actorUrl?: Maybe<Scalars['URI']['output']>;
18127
18142
  /** The time the action was initiated */
18128
18143
  createdAt: Scalars['PreciseDateTime']['output'];
18129
- /** The Node ID of this object */
18144
+ /** The Node ID of the RepoAddTopicAuditEntry object */
18130
18145
  id: Scalars['ID']['output'];
18131
18146
  /** The corresponding operation type for the action */
18132
18147
  operationType?: Maybe<OperationType>;
@@ -18178,7 +18193,7 @@ type RepoArchivedAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & R
18178
18193
  actorUrl?: Maybe<Scalars['URI']['output']>;
18179
18194
  /** The time the action was initiated */
18180
18195
  createdAt: Scalars['PreciseDateTime']['output'];
18181
- /** The Node ID of this object */
18196
+ /** The Node ID of the RepoArchivedAuditEntry object */
18182
18197
  id: Scalars['ID']['output'];
18183
18198
  /** The corresponding operation type for the action */
18184
18199
  operationType?: Maybe<OperationType>;
@@ -18236,7 +18251,7 @@ type RepoChangeMergeSettingAuditEntry = AuditEntry & Node & OrganizationAuditEnt
18236
18251
  actorUrl?: Maybe<Scalars['URI']['output']>;
18237
18252
  /** The time the action was initiated */
18238
18253
  createdAt: Scalars['PreciseDateTime']['output'];
18239
- /** The Node ID of this object */
18254
+ /** The Node ID of the RepoChangeMergeSettingAuditEntry object */
18240
18255
  id: Scalars['ID']['output'];
18241
18256
  /** Whether the change was to enable (true) or disable (false) the merge type */
18242
18257
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -18296,7 +18311,7 @@ type RepoConfigDisableAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiz
18296
18311
  actorUrl?: Maybe<Scalars['URI']['output']>;
18297
18312
  /** The time the action was initiated */
18298
18313
  createdAt: Scalars['PreciseDateTime']['output'];
18299
- /** The Node ID of this object */
18314
+ /** The Node ID of the RepoConfigDisableAnonymousGitAccessAuditEntry object */
18300
18315
  id: Scalars['ID']['output'];
18301
18316
  /** The corresponding operation type for the action */
18302
18317
  operationType?: Maybe<OperationType>;
@@ -18344,7 +18359,7 @@ type RepoConfigDisableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organiza
18344
18359
  actorUrl?: Maybe<Scalars['URI']['output']>;
18345
18360
  /** The time the action was initiated */
18346
18361
  createdAt: Scalars['PreciseDateTime']['output'];
18347
- /** The Node ID of this object */
18362
+ /** The Node ID of the RepoConfigDisableCollaboratorsOnlyAuditEntry object */
18348
18363
  id: Scalars['ID']['output'];
18349
18364
  /** The corresponding operation type for the action */
18350
18365
  operationType?: Maybe<OperationType>;
@@ -18392,7 +18407,7 @@ type RepoConfigDisableContributorsOnlyAuditEntry = AuditEntry & Node & Organizat
18392
18407
  actorUrl?: Maybe<Scalars['URI']['output']>;
18393
18408
  /** The time the action was initiated */
18394
18409
  createdAt: Scalars['PreciseDateTime']['output'];
18395
- /** The Node ID of this object */
18410
+ /** The Node ID of the RepoConfigDisableContributorsOnlyAuditEntry object */
18396
18411
  id: Scalars['ID']['output'];
18397
18412
  /** The corresponding operation type for the action */
18398
18413
  operationType?: Maybe<OperationType>;
@@ -18440,7 +18455,7 @@ type RepoConfigDisableSockpuppetDisallowedAuditEntry = AuditEntry & Node & Organ
18440
18455
  actorUrl?: Maybe<Scalars['URI']['output']>;
18441
18456
  /** The time the action was initiated */
18442
18457
  createdAt: Scalars['PreciseDateTime']['output'];
18443
- /** The Node ID of this object */
18458
+ /** The Node ID of the RepoConfigDisableSockpuppetDisallowedAuditEntry object */
18444
18459
  id: Scalars['ID']['output'];
18445
18460
  /** The corresponding operation type for the action */
18446
18461
  operationType?: Maybe<OperationType>;
@@ -18488,7 +18503,7 @@ type RepoConfigEnableAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiza
18488
18503
  actorUrl?: Maybe<Scalars['URI']['output']>;
18489
18504
  /** The time the action was initiated */
18490
18505
  createdAt: Scalars['PreciseDateTime']['output'];
18491
- /** The Node ID of this object */
18506
+ /** The Node ID of the RepoConfigEnableAnonymousGitAccessAuditEntry object */
18492
18507
  id: Scalars['ID']['output'];
18493
18508
  /** The corresponding operation type for the action */
18494
18509
  operationType?: Maybe<OperationType>;
@@ -18536,7 +18551,7 @@ type RepoConfigEnableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizat
18536
18551
  actorUrl?: Maybe<Scalars['URI']['output']>;
18537
18552
  /** The time the action was initiated */
18538
18553
  createdAt: Scalars['PreciseDateTime']['output'];
18539
- /** The Node ID of this object */
18554
+ /** The Node ID of the RepoConfigEnableCollaboratorsOnlyAuditEntry object */
18540
18555
  id: Scalars['ID']['output'];
18541
18556
  /** The corresponding operation type for the action */
18542
18557
  operationType?: Maybe<OperationType>;
@@ -18584,7 +18599,7 @@ type RepoConfigEnableContributorsOnlyAuditEntry = AuditEntry & Node & Organizati
18584
18599
  actorUrl?: Maybe<Scalars['URI']['output']>;
18585
18600
  /** The time the action was initiated */
18586
18601
  createdAt: Scalars['PreciseDateTime']['output'];
18587
- /** The Node ID of this object */
18602
+ /** The Node ID of the RepoConfigEnableContributorsOnlyAuditEntry object */
18588
18603
  id: Scalars['ID']['output'];
18589
18604
  /** The corresponding operation type for the action */
18590
18605
  operationType?: Maybe<OperationType>;
@@ -18632,7 +18647,7 @@ type RepoConfigEnableSockpuppetDisallowedAuditEntry = AuditEntry & Node & Organi
18632
18647
  actorUrl?: Maybe<Scalars['URI']['output']>;
18633
18648
  /** The time the action was initiated */
18634
18649
  createdAt: Scalars['PreciseDateTime']['output'];
18635
- /** The Node ID of this object */
18650
+ /** The Node ID of the RepoConfigEnableSockpuppetDisallowedAuditEntry object */
18636
18651
  id: Scalars['ID']['output'];
18637
18652
  /** The corresponding operation type for the action */
18638
18653
  operationType?: Maybe<OperationType>;
@@ -18680,7 +18695,7 @@ type RepoConfigLockAnonymousGitAccessAuditEntry = AuditEntry & Node & Organizati
18680
18695
  actorUrl?: Maybe<Scalars['URI']['output']>;
18681
18696
  /** The time the action was initiated */
18682
18697
  createdAt: Scalars['PreciseDateTime']['output'];
18683
- /** The Node ID of this object */
18698
+ /** The Node ID of the RepoConfigLockAnonymousGitAccessAuditEntry object */
18684
18699
  id: Scalars['ID']['output'];
18685
18700
  /** The corresponding operation type for the action */
18686
18701
  operationType?: Maybe<OperationType>;
@@ -18728,7 +18743,7 @@ type RepoConfigUnlockAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiza
18728
18743
  actorUrl?: Maybe<Scalars['URI']['output']>;
18729
18744
  /** The time the action was initiated */
18730
18745
  createdAt: Scalars['PreciseDateTime']['output'];
18731
- /** The Node ID of this object */
18746
+ /** The Node ID of the RepoConfigUnlockAnonymousGitAccessAuditEntry object */
18732
18747
  id: Scalars['ID']['output'];
18733
18748
  /** The corresponding operation type for the action */
18734
18749
  operationType?: Maybe<OperationType>;
@@ -18780,7 +18795,7 @@ type RepoCreateAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
18780
18795
  forkParentName?: Maybe<Scalars['String']['output']>;
18781
18796
  /** The name of the root repository for this network. */
18782
18797
  forkSourceName?: Maybe<Scalars['String']['output']>;
18783
- /** The Node ID of this object */
18798
+ /** The Node ID of the RepoCreateAuditEntry object */
18784
18799
  id: Scalars['ID']['output'];
18785
18800
  /** The corresponding operation type for the action */
18786
18801
  operationType?: Maybe<OperationType>;
@@ -18838,7 +18853,7 @@ type RepoDestroyAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Re
18838
18853
  actorUrl?: Maybe<Scalars['URI']['output']>;
18839
18854
  /** The time the action was initiated */
18840
18855
  createdAt: Scalars['PreciseDateTime']['output'];
18841
- /** The Node ID of this object */
18856
+ /** The Node ID of the RepoDestroyAuditEntry object */
18842
18857
  id: Scalars['ID']['output'];
18843
18858
  /** The corresponding operation type for the action */
18844
18859
  operationType?: Maybe<OperationType>;
@@ -18896,7 +18911,7 @@ type RepoRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
18896
18911
  actorUrl?: Maybe<Scalars['URI']['output']>;
18897
18912
  /** The time the action was initiated */
18898
18913
  createdAt: Scalars['PreciseDateTime']['output'];
18899
- /** The Node ID of this object */
18914
+ /** The Node ID of the RepoRemoveMemberAuditEntry object */
18900
18915
  id: Scalars['ID']['output'];
18901
18916
  /** The corresponding operation type for the action */
18902
18917
  operationType?: Maybe<OperationType>;
@@ -18954,7 +18969,7 @@ type RepoRemoveTopicAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
18954
18969
  actorUrl?: Maybe<Scalars['URI']['output']>;
18955
18970
  /** The time the action was initiated */
18956
18971
  createdAt: Scalars['PreciseDateTime']['output'];
18957
- /** The Node ID of this object */
18972
+ /** The Node ID of the RepoRemoveTopicAuditEntry object */
18958
18973
  id: Scalars['ID']['output'];
18959
18974
  /** The corresponding operation type for the action */
18960
18975
  operationType?: Maybe<OperationType>;
@@ -19079,7 +19094,7 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
19079
19094
  hasWikiEnabled: Scalars['Boolean']['output'];
19080
19095
  /** The repository's URL. */
19081
19096
  homepageUrl?: Maybe<Scalars['URI']['output']>;
19082
- /** The Node ID of this object */
19097
+ /** The Node ID of the Repository object */
19083
19098
  id: Scalars['ID']['output'];
19084
19099
  /** The interaction ability settings for this repository. */
19085
19100
  interactionAbility?: Maybe<RepositoryInteractionAbility>;
@@ -19877,7 +19892,7 @@ type RepositoryInvitation = Node & {
19877
19892
  __typename?: 'RepositoryInvitation';
19878
19893
  /** The email address that received the invitation. */
19879
19894
  email?: Maybe<Scalars['String']['output']>;
19880
- /** The Node ID of this object */
19895
+ /** The Node ID of the RepositoryInvitation object */
19881
19896
  id: Scalars['ID']['output'];
19882
19897
  /** The user who received the invitation. */
19883
19898
  invitee?: Maybe<User>;
@@ -19946,7 +19961,7 @@ type RepositoryMigration = Migration & Node & {
19946
19961
  databaseId?: Maybe<Scalars['String']['output']>;
19947
19962
  /** The reason the migration failed. */
19948
19963
  failureReason?: Maybe<Scalars['String']['output']>;
19949
- /** The Node ID of this object */
19964
+ /** The Node ID of the RepositoryMigration object */
19950
19965
  id: Scalars['ID']['output'];
19951
19966
  /** The URL for the migration log (expires 1 day after migration completes). */
19952
19967
  migrationLogUrl?: Maybe<Scalars['URI']['output']>;
@@ -20115,7 +20130,7 @@ type RepositoryPrivacy =
20115
20130
  /** A repository rule. */
20116
20131
  type RepositoryRule = Node & {
20117
20132
  __typename?: 'RepositoryRule';
20118
- /** The Node ID of this object */
20133
+ /** The Node ID of the RepositoryRule object */
20119
20134
  id: Scalars['ID']['output'];
20120
20135
  /** The parameters for this rule. */
20121
20136
  parameters?: Maybe<RuleParameters>;
@@ -20172,6 +20187,21 @@ type RepositoryRuleInput = {
20172
20187
  /** The type of rule to create. */
20173
20188
  type: RepositoryRuleType;
20174
20189
  };
20190
+ /** Ordering options for repository rules. */
20191
+ type RepositoryRuleOrder = {
20192
+ /** The ordering direction. */
20193
+ direction: OrderDirection;
20194
+ /** The field to order repository rules by. */
20195
+ field: RepositoryRuleOrderField;
20196
+ };
20197
+ /** Properties by which repository rule connections can be ordered. */
20198
+ type RepositoryRuleOrderField =
20199
+ /** Order repository rules by created time */
20200
+ 'CREATED_AT'
20201
+ /** Order repository rules by type */
20202
+ | 'TYPE'
20203
+ /** Order repository rules by updated time */
20204
+ | 'UPDATED_AT';
20175
20205
  /** The rule types supported in rulesets */
20176
20206
  type RepositoryRuleType =
20177
20207
  /** Authorization */
@@ -20248,7 +20278,7 @@ type RepositoryRuleset = Node & {
20248
20278
  databaseId?: Maybe<Scalars['Int']['output']>;
20249
20279
  /** The enforcement level of this ruleset */
20250
20280
  enforcement: RuleEnforcement;
20251
- /** The Node ID of this object */
20281
+ /** The Node ID of the RepositoryRuleset object */
20252
20282
  id: Scalars['ID']['output'];
20253
20283
  /** Name of the ruleset. */
20254
20284
  name: Scalars['String']['output'];
@@ -20283,7 +20313,7 @@ type RepositoryRulesetBypassActor = Node & {
20283
20313
  actor?: Maybe<BypassActor>;
20284
20314
  /** The mode for the bypass actor */
20285
20315
  bypassMode?: Maybe<RepositoryRulesetBypassActorBypassMode>;
20286
- /** The Node ID of this object */
20316
+ /** The Node ID of the RepositoryRulesetBypassActor object */
20287
20317
  id: Scalars['ID']['output'];
20288
20318
  /** This actor represents the ability for an organization owner to bypass */
20289
20319
  organizationAdmin: Scalars['Boolean']['output'];
@@ -20363,7 +20393,7 @@ type RepositoryRulesetTarget =
20363
20393
  /** A repository-topic connects a repository to a topic. */
20364
20394
  type RepositoryTopic = Node & UniformResourceLocatable & {
20365
20395
  __typename?: 'RepositoryTopic';
20366
- /** The Node ID of this object */
20396
+ /** The Node ID of the RepositoryTopic object */
20367
20397
  id: Scalars['ID']['output'];
20368
20398
  /** The HTTP path for this repository-topic. */
20369
20399
  resourcePath: Scalars['URI']['output'];
@@ -20425,7 +20455,7 @@ type RepositoryVisibilityChangeDisableAuditEntry = AuditEntry & EnterpriseAuditE
20425
20455
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
20426
20456
  /** The HTTP URL for this enterprise. */
20427
20457
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
20428
- /** The Node ID of this object */
20458
+ /** The Node ID of the RepositoryVisibilityChangeDisableAuditEntry object */
20429
20459
  id: Scalars['ID']['output'];
20430
20460
  /** The corresponding operation type for the action */
20431
20461
  operationType?: Maybe<OperationType>;
@@ -20471,7 +20501,7 @@ type RepositoryVisibilityChangeEnableAuditEntry = AuditEntry & EnterpriseAuditEn
20471
20501
  enterpriseSlug?: Maybe<Scalars['String']['output']>;
20472
20502
  /** The HTTP URL for this enterprise. */
20473
20503
  enterpriseUrl?: Maybe<Scalars['URI']['output']>;
20474
- /** The Node ID of this object */
20504
+ /** The Node ID of the RepositoryVisibilityChangeEnableAuditEntry object */
20475
20505
  id: Scalars['ID']['output'];
20476
20506
  /** The corresponding operation type for the action */
20477
20507
  operationType?: Maybe<OperationType>;
@@ -20513,7 +20543,7 @@ type RepositoryVulnerabilityAlert = Node & RepositoryNode & {
20513
20543
  dismisser?: Maybe<User>;
20514
20544
  /** When was the alert fixed? */
20515
20545
  fixedAt?: Maybe<Scalars['DateTime']['output']>;
20516
- /** The Node ID of this object */
20546
+ /** The Node ID of the RepositoryVulnerabilityAlert object */
20517
20547
  id: Scalars['ID']['output'];
20518
20548
  /** Identifies the alert number. */
20519
20549
  number: Scalars['Int']['output'];
@@ -20791,7 +20821,7 @@ type ReviewDismissalAllowance = Node & {
20791
20821
  actor?: Maybe<ReviewDismissalAllowanceActor>;
20792
20822
  /** Identifies the branch protection rule associated with the allowed user, team, or app. */
20793
20823
  branchProtectionRule?: Maybe<BranchProtectionRule>;
20794
- /** The Node ID of this object */
20824
+ /** The Node ID of the ReviewDismissalAllowance object */
20795
20825
  id: Scalars['ID']['output'];
20796
20826
  };
20797
20827
  /** Types that can be an actor. */
@@ -20829,7 +20859,7 @@ type ReviewDismissedEvent = Node & UniformResourceLocatable & {
20829
20859
  dismissalMessage?: Maybe<Scalars['String']['output']>;
20830
20860
  /** Identifies the optional message associated with the event, rendered to HTML. */
20831
20861
  dismissalMessageHTML?: Maybe<Scalars['String']['output']>;
20832
- /** The Node ID of this object */
20862
+ /** The Node ID of the ReviewDismissedEvent object */
20833
20863
  id: Scalars['ID']['output'];
20834
20864
  /** Identifies the previous state of the review with the 'review_dismissed' event. */
20835
20865
  previousReviewState: PullRequestReviewState;
@@ -20851,7 +20881,7 @@ type ReviewRequest = Node & {
20851
20881
  asCodeOwner: Scalars['Boolean']['output'];
20852
20882
  /** Identifies the primary key from the database. */
20853
20883
  databaseId?: Maybe<Scalars['Int']['output']>;
20854
- /** The Node ID of this object */
20884
+ /** The Node ID of the ReviewRequest object */
20855
20885
  id: Scalars['ID']['output'];
20856
20886
  /** Identifies the pull request associated with this review request. */
20857
20887
  pullRequest: PullRequest;
@@ -20885,7 +20915,7 @@ type ReviewRequestRemovedEvent = Node & {
20885
20915
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
20886
20916
  /** Identifies the date and time when the object was created. */
20887
20917
  createdAt: Scalars['DateTime']['output'];
20888
- /** The Node ID of this object */
20918
+ /** The Node ID of the ReviewRequestRemovedEvent object */
20889
20919
  id: Scalars['ID']['output'];
20890
20920
  /** PullRequest referenced by event. */
20891
20921
  pullRequest: PullRequest;
@@ -20899,7 +20929,7 @@ type ReviewRequestedEvent = Node & {
20899
20929
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
20900
20930
  /** Identifies the date and time when the object was created. */
20901
20931
  createdAt: Scalars['DateTime']['output'];
20902
- /** The Node ID of this object */
20932
+ /** The Node ID of the ReviewRequestedEvent object */
20903
20933
  id: Scalars['ID']['output'];
20904
20934
  /** PullRequest referenced by event. */
20905
20935
  pullRequest: PullRequest;
@@ -21037,7 +21067,7 @@ type SavedReply = Node & {
21037
21067
  bodyHTML: Scalars['HTML']['output'];
21038
21068
  /** Identifies the primary key from the database. */
21039
21069
  databaseId?: Maybe<Scalars['Int']['output']>;
21040
- /** The Node ID of this object */
21070
+ /** The Node ID of the SavedReply object */
21041
21071
  id: Scalars['ID']['output'];
21042
21072
  /** The title of the saved reply. */
21043
21073
  title: Scalars['String']['output'];
@@ -21160,7 +21190,7 @@ type SecurityAdvisory = Node & {
21160
21190
  description: Scalars['String']['output'];
21161
21191
  /** The GitHub Security Advisory ID */
21162
21192
  ghsaId: Scalars['String']['output'];
21163
- /** The Node ID of this object */
21193
+ /** The Node ID of the SecurityAdvisory object */
21164
21194
  id: Scalars['ID']['output'];
21165
21195
  /** A list of identifiers for this advisory */
21166
21196
  identifiers: Array<SecurityAdvisoryIdentifier>;
@@ -21725,7 +21755,7 @@ type SponsorsActivity = Node & {
21725
21755
  action: SponsorsActivityAction;
21726
21756
  /** The sponsor's current privacy level. */
21727
21757
  currentPrivacyLevel?: Maybe<SponsorshipPrivacy>;
21728
- /** The Node ID of this object */
21758
+ /** The Node ID of the SponsorsActivity object */
21729
21759
  id: Scalars['ID']['output'];
21730
21760
  /** The platform that was used to pay for the sponsorship. */
21731
21761
  paymentSource?: Maybe<SponsorshipPaymentSource>;
@@ -22354,7 +22384,7 @@ type SponsorsListing = Node & {
22354
22384
  fullDescription: Scalars['String']['output'];
22355
22385
  /** The full description of the listing rendered to HTML. */
22356
22386
  fullDescriptionHTML: Scalars['HTML']['output'];
22357
- /** The Node ID of this object */
22387
+ /** The Node ID of the SponsorsListing object */
22358
22388
  id: Scalars['ID']['output'];
22359
22389
  /** Whether this listing is publicly visible. */
22360
22390
  isPublic: Scalars['Boolean']['output'];
@@ -22409,7 +22439,7 @@ type SponsorsListingFeaturedItem = Node & {
22409
22439
  description?: Maybe<Scalars['String']['output']>;
22410
22440
  /** The record that is featured on the GitHub Sponsors profile. */
22411
22441
  featureable: SponsorsListingFeatureableItem;
22412
- /** The Node ID of this object */
22442
+ /** The Node ID of the SponsorsListingFeaturedItem object */
22413
22443
  id: Scalars['ID']['output'];
22414
22444
  /**
22415
22445
  * The position of this featured item on the GitHub Sponsors profile with a lower
@@ -22444,7 +22474,7 @@ type SponsorsTier = Node & {
22444
22474
  description: Scalars['String']['output'];
22445
22475
  /** The tier description rendered to HTML */
22446
22476
  descriptionHTML: Scalars['HTML']['output'];
22447
- /** The Node ID of this object */
22477
+ /** The Node ID of the SponsorsTier object */
22448
22478
  id: Scalars['ID']['output'];
22449
22479
  /**
22450
22480
  * Whether this tier was chosen at checkout time by the sponsor rather than
@@ -22539,7 +22569,7 @@ type Sponsorship = Node & {
22539
22569
  __typename?: 'Sponsorship';
22540
22570
  /** Identifies the date and time when the object was created. */
22541
22571
  createdAt: Scalars['DateTime']['output'];
22542
- /** The Node ID of this object */
22572
+ /** The Node ID of the Sponsorship object */
22543
22573
  id: Scalars['ID']['output'];
22544
22574
  /**
22545
22575
  * Whether the sponsorship is active. False implies the sponsor is a past sponsor
@@ -22615,7 +22645,7 @@ type SponsorshipNewsletter = Node & {
22615
22645
  body: Scalars['String']['output'];
22616
22646
  /** Identifies the date and time when the object was created. */
22617
22647
  createdAt: Scalars['DateTime']['output'];
22618
- /** The Node ID of this object */
22648
+ /** The Node ID of the SponsorshipNewsletter object */
22619
22649
  id: Scalars['ID']['output'];
22620
22650
  /** Indicates if the newsletter has been made available to sponsors. */
22621
22651
  isPublished: Scalars['Boolean']['output'];
@@ -22860,7 +22890,7 @@ type Status = Node & {
22860
22890
  context?: Maybe<StatusContext>;
22861
22891
  /** The individual status contexts for this commit. */
22862
22892
  contexts: Array<StatusContext>;
22863
- /** The Node ID of this object */
22893
+ /** The Node ID of the Status object */
22864
22894
  id: Scalars['ID']['output'];
22865
22895
  /** The combined commit status. */
22866
22896
  state: StatusState;
@@ -22898,7 +22928,7 @@ type StatusCheckRollup = Node & {
22898
22928
  commit?: Maybe<Commit>;
22899
22929
  /** A list of status contexts and check runs for this commit. */
22900
22930
  contexts: StatusCheckRollupContextConnection;
22901
- /** The Node ID of this object */
22931
+ /** The Node ID of the StatusCheckRollup object */
22902
22932
  id: Scalars['ID']['output'];
22903
22933
  /** The combined status for the commit. */
22904
22934
  state: StatusState;
@@ -22955,7 +22985,7 @@ type StatusContext = Node & RequirableByPullRequest & {
22955
22985
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
22956
22986
  /** The description for this status context. */
22957
22987
  description?: Maybe<Scalars['String']['output']>;
22958
- /** The Node ID of this object */
22988
+ /** The Node ID of the StatusContext object */
22959
22989
  id: Scalars['ID']['output'];
22960
22990
  /** Whether this is required to pass before merging for a specific pull request. */
22961
22991
  isRequired: Scalars['Boolean']['output'];
@@ -23102,7 +23132,7 @@ type SubscribedEvent = Node & {
23102
23132
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
23103
23133
  /** Identifies the date and time when the object was created. */
23104
23134
  createdAt: Scalars['DateTime']['output'];
23105
- /** The Node ID of this object */
23135
+ /** The Node ID of the SubscribedEvent object */
23106
23136
  id: Scalars['ID']['output'];
23107
23137
  /** Object referenced by event. */
23108
23138
  subscribable: Commit | Discussion | Issue | PullRequest | Repository | Team | TeamDiscussion;
@@ -23134,7 +23164,7 @@ type Tag = GitObject & Node & {
23134
23164
  commitResourcePath: Scalars['URI']['output'];
23135
23165
  /** The HTTP URL for this Git object */
23136
23166
  commitUrl: Scalars['URI']['output'];
23137
- /** The Node ID of this object */
23167
+ /** The Node ID of the Tag object */
23138
23168
  id: Scalars['ID']['output'];
23139
23169
  /** The Git tag message. */
23140
23170
  message?: Maybe<Scalars['String']['output']>;
@@ -23201,7 +23231,7 @@ type Team = MemberStatusable & Node & Subscribable & {
23201
23231
  editTeamResourcePath: Scalars['URI']['output'];
23202
23232
  /** The HTTP URL for editing this team */
23203
23233
  editTeamUrl: Scalars['URI']['output'];
23204
- /** The Node ID of this object */
23234
+ /** The Node ID of the Team object */
23205
23235
  id: Scalars['ID']['output'];
23206
23236
  /** A list of pending invitations for users to this team */
23207
23237
  invitations?: Maybe<OrganizationInvitationConnection>;
@@ -23358,7 +23388,7 @@ type TeamAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
23358
23388
  actorUrl?: Maybe<Scalars['URI']['output']>;
23359
23389
  /** The time the action was initiated */
23360
23390
  createdAt: Scalars['PreciseDateTime']['output'];
23361
- /** The Node ID of this object */
23391
+ /** The Node ID of the TeamAddMemberAuditEntry object */
23362
23392
  id: Scalars['ID']['output'];
23363
23393
  /** Whether the team was mapped to an LDAP Group. */
23364
23394
  isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
@@ -23408,7 +23438,7 @@ type TeamAddRepositoryAuditEntry = AuditEntry & Node & OrganizationAuditEntryDat
23408
23438
  actorUrl?: Maybe<Scalars['URI']['output']>;
23409
23439
  /** The time the action was initiated */
23410
23440
  createdAt: Scalars['PreciseDateTime']['output'];
23411
- /** The Node ID of this object */
23441
+ /** The Node ID of the TeamAddRepositoryAuditEntry object */
23412
23442
  id: Scalars['ID']['output'];
23413
23443
  /** Whether the team was mapped to an LDAP Group. */
23414
23444
  isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
@@ -23477,7 +23507,7 @@ type TeamChangeParentTeamAuditEntry = AuditEntry & Node & OrganizationAuditEntry
23477
23507
  actorUrl?: Maybe<Scalars['URI']['output']>;
23478
23508
  /** The time the action was initiated */
23479
23509
  createdAt: Scalars['PreciseDateTime']['output'];
23480
- /** The Node ID of this object */
23510
+ /** The Node ID of the TeamChangeParentTeamAuditEntry object */
23481
23511
  id: Scalars['ID']['output'];
23482
23512
  /** Whether the team was mapped to an LDAP Group. */
23483
23513
  isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
@@ -23580,7 +23610,7 @@ type TeamDiscussion = Comment & Deletable & Node & Reactable & Subscribable & Un
23580
23610
  databaseId?: Maybe<Scalars['Int']['output']>;
23581
23611
  /** The actor who edited the comment. */
23582
23612
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
23583
- /** The Node ID of this object */
23613
+ /** The Node ID of the TeamDiscussion object */
23584
23614
  id: Scalars['ID']['output'];
23585
23615
  /** Check if this comment was edited and includes an edit with the creation data */
23586
23616
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -23710,7 +23740,7 @@ type TeamDiscussionComment = Comment & Deletable & Node & Reactable & UniformRes
23710
23740
  discussion: TeamDiscussion;
23711
23741
  /** The actor who edited the comment. */
23712
23742
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
23713
- /** The Node ID of this object */
23743
+ /** The Node ID of the TeamDiscussionComment object */
23714
23744
  id: Scalars['ID']['output'];
23715
23745
  /** Check if this comment was edited and includes an edit with the creation data */
23716
23746
  includesCreatedEdit: Scalars['Boolean']['output'];
@@ -23932,7 +23962,7 @@ type TeamRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
23932
23962
  actorUrl?: Maybe<Scalars['URI']['output']>;
23933
23963
  /** The time the action was initiated */
23934
23964
  createdAt: Scalars['PreciseDateTime']['output'];
23935
- /** The Node ID of this object */
23965
+ /** The Node ID of the TeamRemoveMemberAuditEntry object */
23936
23966
  id: Scalars['ID']['output'];
23937
23967
  /** Whether the team was mapped to an LDAP Group. */
23938
23968
  isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
@@ -23982,7 +24012,7 @@ type TeamRemoveRepositoryAuditEntry = AuditEntry & Node & OrganizationAuditEntry
23982
24012
  actorUrl?: Maybe<Scalars['URI']['output']>;
23983
24013
  /** The time the action was initiated */
23984
24014
  createdAt: Scalars['PreciseDateTime']['output'];
23985
- /** The Node ID of this object */
24015
+ /** The Node ID of the TeamRemoveRepositoryAuditEntry object */
23986
24016
  id: Scalars['ID']['output'];
23987
24017
  /** Whether the team was mapped to an LDAP Group. */
23988
24018
  isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
@@ -24120,7 +24150,7 @@ type ThreadSubscriptionState =
24120
24150
  /** A topic aggregates entities that are related to a subject. */
24121
24151
  type Topic = Node & Starrable & {
24122
24152
  __typename?: 'Topic';
24123
- /** The Node ID of this object */
24153
+ /** The Node ID of the Topic object */
24124
24154
  id: Scalars['ID']['output'];
24125
24155
  /** The topic's name. */
24126
24156
  name: Scalars['String']['output'];
@@ -24232,7 +24262,7 @@ type TransferredEvent = Node & {
24232
24262
  createdAt: Scalars['DateTime']['output'];
24233
24263
  /** The repository this came from */
24234
24264
  fromRepository?: Maybe<Repository>;
24235
- /** The Node ID of this object */
24265
+ /** The Node ID of the TransferredEvent object */
24236
24266
  id: Scalars['ID']['output'];
24237
24267
  /** Identifies the issue associated with the event. */
24238
24268
  issue: Issue;
@@ -24248,7 +24278,7 @@ type Tree = GitObject & Node & {
24248
24278
  commitUrl: Scalars['URI']['output'];
24249
24279
  /** A list of tree entries. */
24250
24280
  entries?: Maybe<Array<TreeEntry>>;
24251
- /** The Node ID of this object */
24281
+ /** The Node ID of the Tree object */
24252
24282
  id: Scalars['ID']['output'];
24253
24283
  /** The Git object ID */
24254
24284
  oid: Scalars['GitObjectID']['output'];
@@ -24332,7 +24362,7 @@ type UnassignedEvent = Node & {
24332
24362
  assignee?: Maybe<Assignee>;
24333
24363
  /** Identifies the date and time when the object was created. */
24334
24364
  createdAt: Scalars['DateTime']['output'];
24335
- /** The Node ID of this object */
24365
+ /** The Node ID of the UnassignedEvent object */
24336
24366
  id: Scalars['ID']['output'];
24337
24367
  /**
24338
24368
  * Identifies the subject (user) who was unassigned.
@@ -24405,7 +24435,7 @@ type UnlabeledEvent = Node & {
24405
24435
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
24406
24436
  /** Identifies the date and time when the object was created. */
24407
24437
  createdAt: Scalars['DateTime']['output'];
24408
- /** The Node ID of this object */
24438
+ /** The Node ID of the UnlabeledEvent object */
24409
24439
  id: Scalars['ID']['output'];
24410
24440
  /** Identifies the label associated with the 'unlabeled' event. */
24411
24441
  label: Label;
@@ -24489,7 +24519,7 @@ type UnlockedEvent = Node & {
24489
24519
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
24490
24520
  /** Identifies the date and time when the object was created. */
24491
24521
  createdAt: Scalars['DateTime']['output'];
24492
- /** The Node ID of this object */
24522
+ /** The Node ID of the UnlockedEvent object */
24493
24523
  id: Scalars['ID']['output'];
24494
24524
  /** Object that was unlocked. */
24495
24525
  lockable: Discussion | Issue | PullRequest;
@@ -24569,7 +24599,7 @@ type UnmarkedAsDuplicateEvent = Node & {
24569
24599
  createdAt: Scalars['DateTime']['output'];
24570
24600
  /** The issue or pull request which has been marked as a duplicate of another. */
24571
24601
  duplicate?: Maybe<IssueOrPullRequest>;
24572
- /** The Node ID of this object */
24602
+ /** The Node ID of the UnmarkedAsDuplicateEvent object */
24573
24603
  id: Scalars['ID']['output'];
24574
24604
  /** Canonical and duplicate belong to different repositories. */
24575
24605
  isCrossRepository: Scalars['Boolean']['output'];
@@ -24611,7 +24641,7 @@ type UnpinnedEvent = Node & {
24611
24641
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
24612
24642
  /** Identifies the date and time when the object was created. */
24613
24643
  createdAt: Scalars['DateTime']['output'];
24614
- /** The Node ID of this object */
24644
+ /** The Node ID of the UnpinnedEvent object */
24615
24645
  id: Scalars['ID']['output'];
24616
24646
  /** Identifies the issue associated with the event. */
24617
24647
  issue: Issue;
@@ -24653,7 +24683,7 @@ type UnsubscribedEvent = Node & {
24653
24683
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
24654
24684
  /** Identifies the date and time when the object was created. */
24655
24685
  createdAt: Scalars['DateTime']['output'];
24656
- /** The Node ID of this object */
24686
+ /** The Node ID of the UnsubscribedEvent object */
24657
24687
  id: Scalars['ID']['output'];
24658
24688
  /** Object referenced by event. */
24659
24689
  subscribable: Commit | Discussion | Issue | PullRequest | Repository | Team | TeamDiscussion;
@@ -25974,7 +26004,7 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
25974
26004
  hasSponsorsListing: Scalars['Boolean']['output'];
25975
26005
  /** The hovercard information for this user in a given context */
25976
26006
  hovercard: Hovercard;
25977
- /** The Node ID of this object */
26007
+ /** The Node ID of the User object */
25978
26008
  id: Scalars['ID']['output'];
25979
26009
  /** The interaction ability settings for this user. */
25980
26010
  interactionAbility?: Maybe<RepositoryInteractionAbility>;
@@ -26515,7 +26545,7 @@ type UserBlockedEvent = Node & {
26515
26545
  blockDuration: UserBlockDuration;
26516
26546
  /** Identifies the date and time when the object was created. */
26517
26547
  createdAt: Scalars['DateTime']['output'];
26518
- /** The Node ID of this object */
26548
+ /** The Node ID of the UserBlockedEvent object */
26519
26549
  id: Scalars['ID']['output'];
26520
26550
  /** The user who was blocked. */
26521
26551
  subject?: Maybe<User>;
@@ -26547,7 +26577,7 @@ type UserContentEdit = Node & {
26547
26577
  editedAt: Scalars['DateTime']['output'];
26548
26578
  /** The actor who edited this content */
26549
26579
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
26550
- /** The Node ID of this object */
26580
+ /** The Node ID of the UserContentEdit object */
26551
26581
  id: Scalars['ID']['output'];
26552
26582
  /** Identifies the date and time when the object was last updated. */
26553
26583
  updatedAt: Scalars['DateTime']['output'];
@@ -26597,7 +26627,7 @@ type UserList = Node & {
26597
26627
  createdAt: Scalars['DateTime']['output'];
26598
26628
  /** The description of this list */
26599
26629
  description?: Maybe<Scalars['String']['output']>;
26600
- /** The Node ID of this object */
26630
+ /** The Node ID of the UserList object */
26601
26631
  id: Scalars['ID']['output'];
26602
26632
  /** Whether or not this list is private */
26603
26633
  isPrivate: Scalars['Boolean']['output'];
@@ -26682,7 +26712,7 @@ type UserStatus = Node & {
26682
26712
  emojiHTML?: Maybe<Scalars['HTML']['output']>;
26683
26713
  /** If set, the status will not be shown after this date. */
26684
26714
  expiresAt?: Maybe<Scalars['DateTime']['output']>;
26685
- /** The Node ID of this object */
26715
+ /** The Node ID of the UserStatus object */
26686
26716
  id: Scalars['ID']['output'];
26687
26717
  /** Whether this status indicates the user is not fully available on GitHub. */
26688
26718
  indicatesLimitedAvailability: Scalars['Boolean']['output'];
@@ -26741,7 +26771,7 @@ type VerifiableDomain = Node & {
26741
26771
  hasFoundHostName: Scalars['Boolean']['output'];
26742
26772
  /** Whether a TXT record for verification with the expected verification token was found. */
26743
26773
  hasFoundVerificationToken: Scalars['Boolean']['output'];
26744
- /** The Node ID of this object */
26774
+ /** The Node ID of the VerifiableDomain object */
26745
26775
  id: Scalars['ID']['output'];
26746
26776
  /** Whether or not the domain is approved. */
26747
26777
  isApproved: Scalars['Boolean']['output'];
@@ -26836,7 +26866,7 @@ type Workflow = Node & UniformResourceLocatable & {
26836
26866
  createdAt: Scalars['DateTime']['output'];
26837
26867
  /** Identifies the primary key from the database. */
26838
26868
  databaseId?: Maybe<Scalars['Int']['output']>;
26839
- /** The Node ID of this object */
26869
+ /** The Node ID of the Workflow object */
26840
26870
  id: Scalars['ID']['output'];
26841
26871
  /** The name of the workflow. */
26842
26872
  name: Scalars['String']['output'];
@@ -26897,7 +26927,7 @@ type WorkflowRun = Node & UniformResourceLocatable & {
26897
26927
  event: Scalars['String']['output'];
26898
26928
  /** The workflow file */
26899
26929
  file?: Maybe<WorkflowRunFile>;
26900
- /** The Node ID of this object */
26930
+ /** The Node ID of the WorkflowRun object */
26901
26931
  id: Scalars['ID']['output'];
26902
26932
  /** The pending deployment requests of all check runs in this workflow run */
26903
26933
  pendingDeploymentRequests: DeploymentRequestConnection;
@@ -26949,7 +26979,7 @@ type WorkflowRunEdge = {
26949
26979
  /** An executed workflow file for a workflow run. */
26950
26980
  type WorkflowRunFile = Node & UniformResourceLocatable & {
26951
26981
  __typename?: 'WorkflowRunFile';
26952
- /** The Node ID of this object */
26982
+ /** The Node ID of the WorkflowRunFile object */
26953
26983
  id: Scalars['ID']['output'];
26954
26984
  /** The path of the workflow file relative to its repository. */
26955
26985
  path: Scalars['String']['output'];
@@ -27003,4 +27033,4 @@ type WorkflowsParametersInput = {
27003
27033
  workflows: Array<WorkflowFileReferenceInput>;
27004
27034
  };
27005
27035
 
27006
- export type { AbortQueuedMigrationsInput, AbortQueuedMigrationsPayload, AbortRepositoryMigrationInput, AbortRepositoryMigrationPayload, AcceptEnterpriseAdministratorInvitationInput, AcceptEnterpriseAdministratorInvitationPayload, AcceptTopicSuggestionInput, AcceptTopicSuggestionPayload, Actor, ActorAvatarUrlArgs, ActorLocation, ActorType, AddAssigneesToAssignableInput, AddAssigneesToAssignablePayload, AddCommentInput, AddCommentPayload, AddDiscussionCommentInput, AddDiscussionCommentPayload, AddDiscussionPollVoteInput, AddDiscussionPollVotePayload, AddEnterpriseOrganizationMemberInput, AddEnterpriseOrganizationMemberPayload, AddEnterpriseSupportEntitlementInput, AddEnterpriseSupportEntitlementPayload, AddLabelsToLabelableInput, AddLabelsToLabelablePayload, AddProjectCardInput, AddProjectCardPayload, AddProjectColumnInput, AddProjectColumnPayload, AddProjectV2DraftIssueInput, AddProjectV2DraftIssuePayload, AddProjectV2ItemByIdInput, AddProjectV2ItemByIdPayload, AddPullRequestReviewCommentInput, AddPullRequestReviewCommentPayload, AddPullRequestReviewInput, AddPullRequestReviewPayload, AddPullRequestReviewThreadInput, AddPullRequestReviewThreadPayload, AddPullRequestReviewThreadReplyInput, AddPullRequestReviewThreadReplyPayload, AddReactionInput, AddReactionPayload, AddStarInput, AddStarPayload, AddUpvoteInput, AddUpvotePayload, AddVerifiableDomainInput, AddVerifiableDomainPayload, AddedToMergeQueueEvent, AddedToProjectEvent, AnnouncementBanner, App, AppIpAllowListEntriesArgs, AppLogoUrlArgs, ApproveDeploymentsInput, ApproveDeploymentsPayload, ApproveVerifiableDomainInput, ApproveVerifiableDomainPayload, ArchiveProjectV2ItemInput, ArchiveProjectV2ItemPayload, ArchiveRepositoryInput, ArchiveRepositoryPayload, Assignable, AssignableAssigneesArgs, AssignedEvent, Assignee, AuditEntry, AuditEntryActor, AuditLogOrder, AuditLogOrderField, AutoMergeDisabledEvent, AutoMergeEnabledEvent, AutoMergeRequest, AutoRebaseEnabledEvent, AutoSquashEnabledEvent, AutomaticBaseChangeFailedEvent, AutomaticBaseChangeSucceededEvent, BaseRefChangedEvent, BaseRefDeletedEvent, BaseRefForcePushedEvent, Blame, BlameRange, Blob, Bot, BotAvatarUrlArgs, BranchActorAllowanceActor, BranchNamePatternParameters, BranchNamePatternParametersInput, BranchProtectionRule, BranchProtectionRuleBranchProtectionRuleConflictsArgs, BranchProtectionRuleBypassForcePushAllowancesArgs, BranchProtectionRuleBypassPullRequestAllowancesArgs, BranchProtectionRuleConflict, BranchProtectionRuleConflictConnection, BranchProtectionRuleConflictEdge, BranchProtectionRuleConnection, BranchProtectionRuleEdge, BranchProtectionRuleMatchingRefsArgs, BranchProtectionRulePushAllowancesArgs, BranchProtectionRuleReviewDismissalAllowancesArgs, BulkSponsorship, BypassActor, BypassForcePushAllowance, BypassForcePushAllowanceConnection, BypassForcePushAllowanceEdge, BypassPullRequestAllowance, BypassPullRequestAllowanceConnection, BypassPullRequestAllowanceEdge, CancelEnterpriseAdminInvitationInput, CancelEnterpriseAdminInvitationPayload, CancelSponsorshipInput, CancelSponsorshipPayload, ChangeUserStatusInput, ChangeUserStatusPayload, CheckAnnotation, CheckAnnotationConnection, CheckAnnotationData, CheckAnnotationEdge, CheckAnnotationLevel, CheckAnnotationPosition, CheckAnnotationRange, CheckAnnotationSpan, CheckConclusionState, CheckRun, CheckRunAction, CheckRunAnnotationsArgs, CheckRunConnection, CheckRunEdge, CheckRunFilter, CheckRunIsRequiredArgs, CheckRunOutput, CheckRunOutputImage, CheckRunState, CheckRunStateCount, CheckRunStepsArgs, CheckRunType, CheckStatusState, CheckStep, CheckStepConnection, CheckStepEdge, CheckSuite, CheckSuiteAutoTriggerPreference, CheckSuiteCheckRunsArgs, CheckSuiteConnection, CheckSuiteEdge, CheckSuiteFilter, CheckSuiteMatchingPullRequestsArgs, Claimable, ClearLabelsFromLabelableInput, ClearLabelsFromLabelablePayload, ClearProjectV2ItemFieldValueInput, ClearProjectV2ItemFieldValuePayload, CloneProjectInput, CloneProjectPayload, CloneTemplateRepositoryInput, CloneTemplateRepositoryPayload, Closable, CloseDiscussionInput, CloseDiscussionPayload, CloseIssueInput, CloseIssuePayload, ClosePullRequestInput, ClosePullRequestPayload, ClosedEvent, Closer, CodeOfConduct, CollaboratorAffiliation, Comment, CommentAuthorAssociation, CommentCannotUpdateReason, CommentDeletedEvent, CommentUserContentEditsArgs, Commit, CommitAssociatedPullRequestsArgs, CommitAuthor, CommitAuthorEmailPatternParameters, CommitAuthorEmailPatternParametersInput, CommitAuthorsArgs, CommitBlameArgs, CommitCheckSuitesArgs, CommitComment, CommitCommentConnection, CommitCommentEdge, CommitCommentReactionsArgs, CommitCommentThread, CommitCommentThreadCommentsArgs, CommitCommentUserContentEditsArgs, CommitCommentsArgs, CommitConnection, CommitContributionOrder, CommitContributionOrderField, CommitContributionsByRepository, CommitContributionsByRepositoryContributionsArgs, CommitDeploymentsArgs, CommitEdge, CommitFileArgs, CommitHistoryArgs, CommitHistoryConnection, CommitMessage, CommitMessagePatternParameters, CommitMessagePatternParametersInput, CommitParentsArgs, CommitSubmodulesArgs, CommittableBranch, CommitterEmailPatternParameters, CommitterEmailPatternParametersInput, Comparison, ComparisonCommitConnection, ComparisonCommitsArgs, ComparisonStatus, ConnectedEvent, ContributingGuidelines, Contribution, ContributionCalendar, ContributionCalendarDay, ContributionCalendarMonth, ContributionCalendarWeek, ContributionLevel, ContributionOrder, ContributionsCollection, ContributionsCollectionCommitContributionsByRepositoryArgs, ContributionsCollectionIssueContributionsArgs, ContributionsCollectionIssueContributionsByRepositoryArgs, ContributionsCollectionPullRequestContributionsArgs, ContributionsCollectionPullRequestContributionsByRepositoryArgs, ContributionsCollectionPullRequestReviewContributionsArgs, ContributionsCollectionPullRequestReviewContributionsByRepositoryArgs, ContributionsCollectionRepositoryContributionsArgs, ContributionsCollectionTotalIssueContributionsArgs, ContributionsCollectionTotalPullRequestContributionsArgs, ContributionsCollectionTotalRepositoriesWithContributedIssuesArgs, ContributionsCollectionTotalRepositoriesWithContributedPullRequestsArgs, ContributionsCollectionTotalRepositoryContributionsArgs, ConvertProjectCardNoteToIssueInput, ConvertProjectCardNoteToIssuePayload, ConvertPullRequestToDraftInput, ConvertPullRequestToDraftPayload, ConvertToDraftEvent, ConvertedNoteToIssueEvent, ConvertedToDiscussionEvent, CopyProjectV2Input, CopyProjectV2Payload, CreateAttributionInvitationInput, CreateAttributionInvitationPayload, CreateBranchProtectionRuleInput, CreateBranchProtectionRulePayload, CreateCheckRunInput, CreateCheckRunPayload, CreateCheckSuiteInput, CreateCheckSuitePayload, CreateCommitOnBranchInput, CreateCommitOnBranchPayload, CreateDiscussionInput, CreateDiscussionPayload, CreateEnterpriseOrganizationInput, CreateEnterpriseOrganizationPayload, CreateEnvironmentInput, CreateEnvironmentPayload, CreateIpAllowListEntryInput, CreateIpAllowListEntryPayload, CreateIssueInput, CreateIssuePayload, CreateLinkedBranchInput, CreateLinkedBranchPayload, CreateMigrationSourceInput, CreateMigrationSourcePayload, CreateProjectInput, CreateProjectPayload, CreateProjectV2FieldInput, CreateProjectV2FieldPayload, CreateProjectV2Input, CreateProjectV2Payload, CreatePullRequestInput, CreatePullRequestPayload, CreateRefInput, CreateRefPayload, CreateRepositoryInput, CreateRepositoryPayload, CreateRepositoryRulesetInput, CreateRepositoryRulesetPayload, CreateSponsorsListingInput, CreateSponsorsListingPayload, CreateSponsorsTierInput, CreateSponsorsTierPayload, CreateSponsorshipInput, CreateSponsorshipPayload, CreateSponsorshipsInput, CreateSponsorshipsPayload, CreateTeamDiscussionCommentInput, CreateTeamDiscussionCommentPayload, CreateTeamDiscussionInput, CreateTeamDiscussionPayload, CreateUserListInput, CreateUserListPayload, CreatedCommitContribution, CreatedCommitContributionConnection, CreatedCommitContributionEdge, CreatedIssueContribution, CreatedIssueContributionConnection, CreatedIssueContributionEdge, CreatedIssueOrRestrictedContribution, CreatedPullRequestContribution, CreatedPullRequestContributionConnection, CreatedPullRequestContributionEdge, CreatedPullRequestOrRestrictedContribution, CreatedPullRequestReviewContribution, CreatedPullRequestReviewContributionConnection, CreatedPullRequestReviewContributionEdge, CreatedRepositoryContribution, CreatedRepositoryContributionConnection, CreatedRepositoryContributionEdge, CreatedRepositoryOrRestrictedContribution, CrossReferencedEvent, Cvss, Cwe, CweConnection, CweEdge, DeclineTopicSuggestionInput, DeclineTopicSuggestionPayload, DefaultRepositoryPermissionField, Deletable, DeleteBranchProtectionRuleInput, DeleteBranchProtectionRulePayload, DeleteDeploymentInput, DeleteDeploymentPayload, DeleteDiscussionCommentInput, DeleteDiscussionCommentPayload, DeleteDiscussionInput, DeleteDiscussionPayload, DeleteEnvironmentInput, DeleteEnvironmentPayload, DeleteIpAllowListEntryInput, DeleteIpAllowListEntryPayload, DeleteIssueCommentInput, DeleteIssueCommentPayload, DeleteIssueInput, DeleteIssuePayload, DeleteLinkedBranchInput, DeleteLinkedBranchPayload, DeleteProjectCardInput, DeleteProjectCardPayload, DeleteProjectColumnInput, DeleteProjectColumnPayload, DeleteProjectInput, DeleteProjectPayload, DeleteProjectV2FieldInput, DeleteProjectV2FieldPayload, DeleteProjectV2Input, DeleteProjectV2ItemInput, DeleteProjectV2ItemPayload, DeleteProjectV2Payload, DeleteProjectV2WorkflowInput, DeleteProjectV2WorkflowPayload, DeletePullRequestReviewCommentInput, DeletePullRequestReviewCommentPayload, DeletePullRequestReviewInput, DeletePullRequestReviewPayload, DeleteRefInput, DeleteRefPayload, DeleteRepositoryRulesetInput, DeleteRepositoryRulesetPayload, DeleteTeamDiscussionCommentInput, DeleteTeamDiscussionCommentPayload, DeleteTeamDiscussionInput, DeleteTeamDiscussionPayload, DeleteUserListInput, DeleteUserListPayload, DeleteVerifiableDomainInput, DeleteVerifiableDomainPayload, DemilestonedEvent, DependabotUpdate, DependabotUpdateError, DependencyGraphEcosystem, DeployKey, DeployKeyConnection, DeployKeyEdge, DeployedEvent, Deployment, DeploymentConnection, DeploymentEdge, DeploymentEnvironmentChangedEvent, DeploymentOrder, DeploymentOrderField, DeploymentProtectionRule, DeploymentProtectionRuleConnection, DeploymentProtectionRuleEdge, DeploymentProtectionRuleReviewersArgs, DeploymentProtectionRuleType, DeploymentRequest, DeploymentRequestConnection, DeploymentRequestEdge, DeploymentRequestReviewersArgs, DeploymentReview, DeploymentReviewConnection, DeploymentReviewEdge, DeploymentReviewEnvironmentsArgs, DeploymentReviewState, DeploymentReviewer, DeploymentReviewerConnection, DeploymentReviewerEdge, DeploymentState, DeploymentStatus, DeploymentStatusConnection, DeploymentStatusEdge, DeploymentStatusState, DeploymentStatusesArgs, DequeuePullRequestInput, DequeuePullRequestPayload, DiffSide, DisablePullRequestAutoMergeInput, DisablePullRequestAutoMergePayload, DisconnectedEvent, Discussion, DiscussionCategory, DiscussionCategoryConnection, DiscussionCategoryEdge, DiscussionCloseReason, DiscussionComment, DiscussionCommentConnection, DiscussionCommentEdge, DiscussionCommentReactionsArgs, DiscussionCommentRepliesArgs, DiscussionCommentUserContentEditsArgs, DiscussionCommentsArgs, DiscussionConnection, DiscussionEdge, DiscussionLabelsArgs, DiscussionOrder, DiscussionOrderField, DiscussionPoll, DiscussionPollOption, DiscussionPollOptionConnection, DiscussionPollOptionEdge, DiscussionPollOptionOrder, DiscussionPollOptionOrderField, DiscussionPollOptionsArgs, DiscussionReactionsArgs, DiscussionState, DiscussionStateReason, DiscussionUserContentEditsArgs, DismissPullRequestReviewInput, DismissPullRequestReviewPayload, DismissReason, DismissRepositoryVulnerabilityAlertInput, DismissRepositoryVulnerabilityAlertPayload, DraftIssue, DraftIssueAssigneesArgs, DraftIssueProjectV2ItemsArgs, DraftIssueProjectsV2Args, DraftPullRequestReviewComment, DraftPullRequestReviewThread, EnablePullRequestAutoMergeInput, EnablePullRequestAutoMergePayload, EnqueuePullRequestInput, EnqueuePullRequestPayload, Enterprise, EnterpriseAdministratorConnection, EnterpriseAdministratorEdge, EnterpriseAdministratorInvitation, EnterpriseAdministratorInvitationConnection, EnterpriseAdministratorInvitationEdge, EnterpriseAdministratorInvitationOrder, EnterpriseAdministratorInvitationOrderField, EnterpriseAdministratorRole, EnterpriseAllowPrivateRepositoryForkingPolicyValue, EnterpriseAuditEntryData, EnterpriseAvatarUrlArgs, EnterpriseBillingInfo, EnterpriseConnection, EnterpriseDefaultRepositoryPermissionSettingValue, EnterpriseEdge, EnterpriseEnabledDisabledSettingValue, EnterpriseEnabledSettingValue, EnterpriseFailedInvitationConnection, EnterpriseFailedInvitationEdge, EnterpriseIdentityProvider, EnterpriseIdentityProviderExternalIdentitiesArgs, EnterpriseMember, EnterpriseMemberConnection, EnterpriseMemberEdge, EnterpriseMemberOrder, EnterpriseMemberOrderField, EnterpriseMembersArgs, EnterpriseMembersCanCreateRepositoriesSettingValue, EnterpriseMembersCanMakePurchasesSettingValue, EnterpriseMembershipType, EnterpriseOrder, EnterpriseOrderField, EnterpriseOrganizationMembershipConnection, EnterpriseOrganizationMembershipEdge, EnterpriseOrganizationsArgs, EnterpriseOutsideCollaboratorConnection, EnterpriseOutsideCollaboratorEdge, EnterpriseOutsideCollaboratorEdgeRepositoriesArgs, EnterpriseOwnerInfo, EnterpriseOwnerInfoAdminsArgs, EnterpriseOwnerInfoAffiliatedUsersWithTwoFactorDisabledArgs, EnterpriseOwnerInfoAllowPrivateRepositoryForkingSettingOrganizationsArgs, EnterpriseOwnerInfoDefaultRepositoryPermissionSettingOrganizationsArgs, EnterpriseOwnerInfoDomainsArgs, EnterpriseOwnerInfoEnterpriseServerInstallationsArgs, EnterpriseOwnerInfoFailedInvitationsArgs, EnterpriseOwnerInfoIpAllowListEntriesArgs, EnterpriseOwnerInfoMembersCanChangeRepositoryVisibilitySettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanCreateRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteIssuesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanInviteCollaboratorsSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanUpdateProtectedBranchesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanViewDependencyInsightsSettingOrganizationsArgs, EnterpriseOwnerInfoOrganizationProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoOutsideCollaboratorsArgs, EnterpriseOwnerInfoPendingAdminInvitationsArgs, EnterpriseOwnerInfoPendingCollaboratorInvitationsArgs, EnterpriseOwnerInfoPendingMemberInvitationsArgs, EnterpriseOwnerInfoRepositoryProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoSamlIdentityProviderSettingOrganizationsArgs, EnterpriseOwnerInfoSupportEntitlementsArgs, EnterpriseOwnerInfoTeamDiscussionsSettingOrganizationsArgs, EnterpriseOwnerInfoTwoFactorRequiredSettingOrganizationsArgs, EnterprisePendingMemberInvitationConnection, EnterprisePendingMemberInvitationEdge, EnterpriseRepositoryInfo, EnterpriseRepositoryInfoConnection, EnterpriseRepositoryInfoEdge, EnterpriseServerInstallation, EnterpriseServerInstallationConnection, EnterpriseServerInstallationEdge, EnterpriseServerInstallationMembershipConnection, EnterpriseServerInstallationMembershipEdge, EnterpriseServerInstallationOrder, EnterpriseServerInstallationOrderField, EnterpriseServerInstallationUserAccountsArgs, EnterpriseServerInstallationUserAccountsUploadsArgs, EnterpriseServerUserAccount, EnterpriseServerUserAccountConnection, EnterpriseServerUserAccountEdge, EnterpriseServerUserAccountEmail, EnterpriseServerUserAccountEmailConnection, EnterpriseServerUserAccountEmailEdge, EnterpriseServerUserAccountEmailOrder, EnterpriseServerUserAccountEmailOrderField, EnterpriseServerUserAccountEmailsArgs, EnterpriseServerUserAccountOrder, EnterpriseServerUserAccountOrderField, EnterpriseServerUserAccountsUpload, EnterpriseServerUserAccountsUploadConnection, EnterpriseServerUserAccountsUploadEdge, EnterpriseServerUserAccountsUploadOrder, EnterpriseServerUserAccountsUploadOrderField, EnterpriseServerUserAccountsUploadSyncState, EnterpriseUserAccount, EnterpriseUserAccountAvatarUrlArgs, EnterpriseUserAccountEnterpriseInstallationsArgs, EnterpriseUserAccountMembershipRole, EnterpriseUserAccountOrganizationsArgs, EnterpriseUserDeployment, Environment, EnvironmentConnection, EnvironmentEdge, EnvironmentOrderField, EnvironmentProtectionRulesArgs, Environments, Exact, ExternalIdentity, ExternalIdentityAttribute, ExternalIdentityConnection, ExternalIdentityEdge, ExternalIdentitySamlAttributes, ExternalIdentityScimAttributes, FileAddition, FileChanges, FileDeletion, 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, Incremental, InputMaybe, InviteEnterpriseAdminInput, InviteEnterpriseAdminPayload, IpAllowListEnabledSettingValue, IpAllowListEntry, IpAllowListEntryConnection, IpAllowListEntryEdge, IpAllowListEntryOrder, IpAllowListEntryOrderField, IpAllowListForInstalledAppsEnabledSettingValue, IpAllowListOwner, Issue, IssueAssigneesArgs, IssueClosedStateReason, IssueComment, IssueCommentConnection, IssueCommentEdge, IssueCommentOrder, IssueCommentOrderField, IssueCommentReactionsArgs, IssueCommentUserContentEditsArgs, IssueCommentsArgs, IssueConnection, IssueContributionsByRepository, IssueContributionsByRepositoryContributionsArgs, IssueEdge, IssueFilters, IssueHovercardArgs, IssueLabelsArgs, IssueLinkedBranchesArgs, IssueOrPullRequest, IssueOrder, IssueOrderField, IssueParticipantsArgs, IssueProjectCardsArgs, IssueProjectItemsArgs, IssueProjectV2Args, IssueProjectsV2Args, IssueReactionsArgs, IssueState, IssueStateReason, IssueTemplate, IssueTemplateAssigneesArgs, IssueTemplateLabelsArgs, IssueTimelineArgs, IssueTimelineConnection, IssueTimelineItem, IssueTimelineItemEdge, IssueTimelineItems, IssueTimelineItemsArgs, IssueTimelineItemsConnection, IssueTimelineItemsEdge, IssueTimelineItemsItemType, IssueTrackedInIssuesArgs, IssueTrackedIssuesArgs, IssueTrackedIssuesCountArgs, IssueUserContentEditsArgs, JoinedGitHubContribution, Label, LabelConnection, LabelEdge, LabelIssuesArgs, LabelOrder, LabelOrderField, LabelPullRequestsArgs, Labelable, LabelableLabelsArgs, LabeledEvent, Language, LanguageConnection, LanguageEdge, LanguageOrder, LanguageOrderField, License, LicenseRule, LinkProjectV2ToRepositoryInput, LinkProjectV2ToRepositoryPayload, LinkProjectV2ToTeamInput, LinkProjectV2ToTeamPayload, LinkRepositoryToProjectInput, LinkRepositoryToProjectPayload, LinkedBranch, LinkedBranchConnection, LinkedBranchEdge, LockLockableInput, LockLockablePayload, LockReason, Lockable, LockedEvent, MakeEmpty, MakeMaybe, MakeOptional, Mannequin, MannequinAvatarUrlArgs, MannequinConnection, MannequinEdge, MannequinOrder, MannequinOrderField, MarkDiscussionCommentAsAnswerInput, MarkDiscussionCommentAsAnswerPayload, MarkFileAsViewedInput, MarkFileAsViewedPayload, MarkProjectV2AsTemplateInput, MarkProjectV2AsTemplatePayload, MarkPullRequestReadyForReviewInput, MarkPullRequestReadyForReviewPayload, MarkedAsDuplicateEvent, MarketplaceCategory, MarketplaceListing, MarketplaceListingConnection, MarketplaceListingEdge, MarketplaceListingLogoUrlArgs, Maybe, MemberFeatureRequestNotification, MemberStatusable, MemberStatusableMemberStatusesArgs, MembersCanDeleteReposClearAuditEntry, MembersCanDeleteReposDisableAuditEntry, MembersCanDeleteReposEnableAuditEntry, MentionedEvent, MergeBranchInput, MergeBranchPayload, MergeCommitMessage, MergeCommitTitle, MergePullRequestInput, MergePullRequestPayload, MergeQueue, MergeQueueConfiguration, MergeQueueEntriesArgs, MergeQueueEntry, MergeQueueEntryConnection, MergeQueueEntryEdge, MergeQueueEntryState, MergeQueueMergingStrategy, MergeableState, MergedEvent, Migration, MigrationSource, MigrationSourceType, MigrationState, Milestone, MilestoneConnection, MilestoneEdge, MilestoneIssuesArgs, MilestoneItem, MilestoneOrder, MilestoneOrderField, MilestonePullRequestsArgs, MilestoneState, MilestonedEvent, Minimizable, MinimizeCommentInput, MinimizeCommentPayload, MoveProjectCardInput, MoveProjectCardPayload, MoveProjectColumnInput, MoveProjectColumnPayload, MovedColumnsInProjectEvent, Mutation, MutationAbortQueuedMigrationsArgs, MutationAbortRepositoryMigrationArgs, MutationAcceptEnterpriseAdministratorInvitationArgs, MutationAcceptTopicSuggestionArgs, MutationAddAssigneesToAssignableArgs, MutationAddCommentArgs, MutationAddDiscussionCommentArgs, MutationAddDiscussionPollVoteArgs, MutationAddEnterpriseOrganizationMemberArgs, MutationAddEnterpriseSupportEntitlementArgs, MutationAddLabelsToLabelableArgs, MutationAddProjectCardArgs, MutationAddProjectColumnArgs, MutationAddProjectV2DraftIssueArgs, MutationAddProjectV2ItemByIdArgs, MutationAddPullRequestReviewArgs, MutationAddPullRequestReviewCommentArgs, MutationAddPullRequestReviewThreadArgs, MutationAddPullRequestReviewThreadReplyArgs, MutationAddReactionArgs, MutationAddStarArgs, MutationAddUpvoteArgs, MutationAddVerifiableDomainArgs, MutationApproveDeploymentsArgs, MutationApproveVerifiableDomainArgs, MutationArchiveProjectV2ItemArgs, MutationArchiveRepositoryArgs, MutationCancelEnterpriseAdminInvitationArgs, MutationCancelSponsorshipArgs, MutationChangeUserStatusArgs, MutationClearLabelsFromLabelableArgs, MutationClearProjectV2ItemFieldValueArgs, MutationCloneProjectArgs, MutationCloneTemplateRepositoryArgs, MutationCloseDiscussionArgs, MutationCloseIssueArgs, MutationClosePullRequestArgs, MutationConvertProjectCardNoteToIssueArgs, MutationConvertPullRequestToDraftArgs, MutationCopyProjectV2Args, MutationCreateAttributionInvitationArgs, MutationCreateBranchProtectionRuleArgs, MutationCreateCheckRunArgs, MutationCreateCheckSuiteArgs, MutationCreateCommitOnBranchArgs, MutationCreateDiscussionArgs, MutationCreateEnterpriseOrganizationArgs, MutationCreateEnvironmentArgs, MutationCreateIpAllowListEntryArgs, MutationCreateIssueArgs, MutationCreateLinkedBranchArgs, MutationCreateMigrationSourceArgs, MutationCreateProjectArgs, MutationCreateProjectV2Args, MutationCreateProjectV2FieldArgs, MutationCreatePullRequestArgs, MutationCreateRefArgs, MutationCreateRepositoryArgs, MutationCreateRepositoryRulesetArgs, MutationCreateSponsorsListingArgs, MutationCreateSponsorsTierArgs, MutationCreateSponsorshipArgs, MutationCreateSponsorshipsArgs, MutationCreateTeamDiscussionArgs, MutationCreateTeamDiscussionCommentArgs, MutationCreateUserListArgs, MutationDeclineTopicSuggestionArgs, MutationDeleteBranchProtectionRuleArgs, MutationDeleteDeploymentArgs, MutationDeleteDiscussionArgs, MutationDeleteDiscussionCommentArgs, MutationDeleteEnvironmentArgs, MutationDeleteIpAllowListEntryArgs, MutationDeleteIssueArgs, MutationDeleteIssueCommentArgs, MutationDeleteLinkedBranchArgs, MutationDeleteProjectArgs, MutationDeleteProjectCardArgs, MutationDeleteProjectColumnArgs, MutationDeleteProjectV2Args, MutationDeleteProjectV2FieldArgs, MutationDeleteProjectV2ItemArgs, MutationDeleteProjectV2WorkflowArgs, MutationDeletePullRequestReviewArgs, MutationDeletePullRequestReviewCommentArgs, MutationDeleteRefArgs, MutationDeleteRepositoryRulesetArgs, MutationDeleteTeamDiscussionArgs, MutationDeleteTeamDiscussionCommentArgs, MutationDeleteUserListArgs, MutationDeleteVerifiableDomainArgs, MutationDequeuePullRequestArgs, MutationDisablePullRequestAutoMergeArgs, MutationDismissPullRequestReviewArgs, MutationDismissRepositoryVulnerabilityAlertArgs, MutationEnablePullRequestAutoMergeArgs, MutationEnqueuePullRequestArgs, MutationFollowOrganizationArgs, MutationFollowUserArgs, MutationGrantEnterpriseOrganizationsMigratorRoleArgs, MutationGrantMigratorRoleArgs, MutationInviteEnterpriseAdminArgs, MutationLinkProjectV2ToRepositoryArgs, MutationLinkProjectV2ToTeamArgs, MutationLinkRepositoryToProjectArgs, MutationLockLockableArgs, MutationMarkDiscussionCommentAsAnswerArgs, MutationMarkFileAsViewedArgs, MutationMarkProjectV2AsTemplateArgs, MutationMarkPullRequestReadyForReviewArgs, MutationMergeBranchArgs, MutationMergePullRequestArgs, MutationMinimizeCommentArgs, MutationMoveProjectCardArgs, MutationMoveProjectColumnArgs, MutationPinIssueArgs, MutationPublishSponsorsTierArgs, MutationRegenerateEnterpriseIdentityProviderRecoveryCodesArgs, MutationRegenerateVerifiableDomainTokenArgs, MutationRejectDeploymentsArgs, MutationRemoveAssigneesFromAssignableArgs, MutationRemoveEnterpriseAdminArgs, MutationRemoveEnterpriseIdentityProviderArgs, MutationRemoveEnterpriseMemberArgs, MutationRemoveEnterpriseOrganizationArgs, MutationRemoveEnterpriseSupportEntitlementArgs, MutationRemoveLabelsFromLabelableArgs, MutationRemoveOutsideCollaboratorArgs, MutationRemoveReactionArgs, MutationRemoveStarArgs, MutationRemoveUpvoteArgs, MutationReopenDiscussionArgs, MutationReopenIssueArgs, MutationReopenPullRequestArgs, MutationRequestReviewsArgs, MutationRerequestCheckSuiteArgs, MutationResolveReviewThreadArgs, MutationRetireSponsorsTierArgs, MutationRevertPullRequestArgs, MutationRevokeEnterpriseOrganizationsMigratorRoleArgs, MutationRevokeMigratorRoleArgs, MutationSetEnterpriseIdentityProviderArgs, MutationSetOrganizationInteractionLimitArgs, MutationSetRepositoryInteractionLimitArgs, MutationSetUserInteractionLimitArgs, MutationStartOrganizationMigrationArgs, MutationStartRepositoryMigrationArgs, MutationSubmitPullRequestReviewArgs, MutationTransferEnterpriseOrganizationArgs, MutationTransferIssueArgs, MutationUnarchiveProjectV2ItemArgs, MutationUnarchiveRepositoryArgs, MutationUnfollowOrganizationArgs, MutationUnfollowUserArgs, MutationUnlinkProjectV2FromRepositoryArgs, MutationUnlinkProjectV2FromTeamArgs, MutationUnlinkRepositoryFromProjectArgs, MutationUnlockLockableArgs, MutationUnmarkDiscussionCommentAsAnswerArgs, MutationUnmarkFileAsViewedArgs, MutationUnmarkIssueAsDuplicateArgs, MutationUnmarkProjectV2AsTemplateArgs, MutationUnminimizeCommentArgs, MutationUnpinIssueArgs, MutationUnresolveReviewThreadArgs, MutationUnsubscribeFromNotificationsArgs, MutationUpdateBranchProtectionRuleArgs, MutationUpdateCheckRunArgs, MutationUpdateCheckSuitePreferencesArgs, MutationUpdateDiscussionArgs, MutationUpdateDiscussionCommentArgs, MutationUpdateEnterpriseAdministratorRoleArgs, MutationUpdateEnterpriseAllowPrivateRepositoryForkingSettingArgs, MutationUpdateEnterpriseDefaultRepositoryPermissionSettingArgs, MutationUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingArgs, MutationUpdateEnterpriseMembersCanCreateRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteIssuesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanInviteCollaboratorsSettingArgs, MutationUpdateEnterpriseMembersCanMakePurchasesSettingArgs, MutationUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingArgs, MutationUpdateEnterpriseMembersCanViewDependencyInsightsSettingArgs, MutationUpdateEnterpriseOrganizationProjectsSettingArgs, MutationUpdateEnterpriseOwnerOrganizationRoleArgs, MutationUpdateEnterpriseProfileArgs, MutationUpdateEnterpriseRepositoryProjectsSettingArgs, MutationUpdateEnterpriseTeamDiscussionsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationRequiredSettingArgs, MutationUpdateEnvironmentArgs, MutationUpdateIpAllowListEnabledSettingArgs, MutationUpdateIpAllowListEntryArgs, MutationUpdateIpAllowListForInstalledAppsEnabledSettingArgs, MutationUpdateIssueArgs, MutationUpdateIssueCommentArgs, MutationUpdateNotificationRestrictionSettingArgs, MutationUpdateOrganizationAllowPrivateRepositoryForkingSettingArgs, MutationUpdateOrganizationWebCommitSignoffSettingArgs, MutationUpdatePatreonSponsorabilityArgs, MutationUpdateProjectArgs, MutationUpdateProjectCardArgs, MutationUpdateProjectColumnArgs, MutationUpdateProjectV2Args, MutationUpdateProjectV2CollaboratorsArgs, MutationUpdateProjectV2DraftIssueArgs, MutationUpdateProjectV2ItemFieldValueArgs, MutationUpdateProjectV2ItemPositionArgs, MutationUpdatePullRequestArgs, MutationUpdatePullRequestBranchArgs, MutationUpdatePullRequestReviewArgs, MutationUpdatePullRequestReviewCommentArgs, MutationUpdateRefArgs, MutationUpdateRepositoryArgs, MutationUpdateRepositoryRulesetArgs, MutationUpdateRepositoryWebCommitSignoffSettingArgs, MutationUpdateSponsorshipPreferencesArgs, MutationUpdateSubscriptionArgs, MutationUpdateTeamDiscussionArgs, MutationUpdateTeamDiscussionCommentArgs, 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, OrganizationMannequinsArgs, OrganizationMemberConnection, OrganizationMemberEdge, OrganizationMemberRole, OrganizationMemberStatusesArgs, OrganizationMembersCanCreateRepositoriesSettingValue, OrganizationMembersWithRoleArgs, OrganizationMigration, OrganizationMigrationState, OrganizationOrUser, OrganizationOrder, OrganizationOrderField, OrganizationPackagesArgs, OrganizationPendingMembersArgs, OrganizationPinnableItemsArgs, OrganizationPinnedItemsArgs, OrganizationProjectArgs, OrganizationProjectV2Args, OrganizationProjectsArgs, OrganizationProjectsV2Args, OrganizationRecentProjectsArgs, OrganizationRepositoriesArgs, OrganizationRepositoryArgs, OrganizationRepositoryDiscussionCommentsArgs, OrganizationRepositoryDiscussionsArgs, OrganizationRepositoryMigrationsArgs, OrganizationRulesetArgs, OrganizationRulesetsArgs, OrganizationSponsoringArgs, OrganizationSponsorsActivitiesArgs, OrganizationSponsorsArgs, OrganizationSponsorshipForViewerAsSponsorArgs, OrganizationSponsorshipForViewerAsSponsorableArgs, OrganizationSponsorshipNewslettersArgs, OrganizationSponsorshipsAsMaintainerArgs, OrganizationSponsorshipsAsSponsorArgs, OrganizationTeamArgs, OrganizationTeamsArgs, OrganizationTeamsHovercardContext, OrganizationTeamsHovercardContextRelevantTeamsArgs, OrganizationTotalSponsorshipAmountAsSponsorInCentsArgs, OrganizationsHovercardContext, OrganizationsHovercardContextRelevantOrganizationsArgs, Package, PackageConnection, PackageEdge, PackageFile, PackageFileConnection, PackageFileEdge, PackageFileOrder, PackageFileOrderField, PackageOrder, PackageOrderField, PackageOwner, PackageOwnerPackagesArgs, PackageStatistics, PackageTag, PackageType, PackageVersion, PackageVersionArgs, PackageVersionConnection, PackageVersionEdge, PackageVersionFilesArgs, PackageVersionOrder, PackageVersionOrderField, PackageVersionStatistics, PackageVersionsArgs, PageInfo, PatchStatus, PermissionGranter, PermissionSource, PinIssueInput, PinIssuePayload, PinnableItem, PinnableItemConnection, PinnableItemEdge, PinnableItemType, PinnedDiscussion, PinnedDiscussionConnection, PinnedDiscussionEdge, PinnedDiscussionGradient, PinnedDiscussionPattern, PinnedEvent, PinnedIssue, PinnedIssueConnection, PinnedIssueEdge, PrivateRepositoryForkingDisableAuditEntry, PrivateRepositoryForkingEnableAuditEntry, ProfileItemShowcase, ProfileItemShowcaseItemsArgs, ProfileOwner, ProfileOwnerAnyPinnableItemsArgs, ProfileOwnerPinnableItemsArgs, ProfileOwnerPinnedItemsArgs, Project, ProjectCard, ProjectCardArchivedState, ProjectCardConnection, ProjectCardEdge, ProjectCardItem, ProjectCardState, ProjectColumn, ProjectColumnCardsArgs, ProjectColumnConnection, ProjectColumnEdge, ProjectColumnPurpose, ProjectColumnsArgs, ProjectConnection, ProjectEdge, ProjectOrder, ProjectOrderField, ProjectOwner, ProjectOwnerProjectArgs, ProjectOwnerProjectsArgs, ProjectPendingCardsArgs, ProjectProgress, ProjectState, ProjectTemplate, ProjectV2, ProjectV2Actor, ProjectV2ActorConnection, ProjectV2ActorEdge, ProjectV2Collaborator, ProjectV2Connection, ProjectV2CustomFieldType, ProjectV2Edge, ProjectV2Field, ProjectV2FieldArgs, ProjectV2FieldCommon, ProjectV2FieldConfiguration, ProjectV2FieldConfigurationConnection, ProjectV2FieldConfigurationEdge, ProjectV2FieldConnection, ProjectV2FieldEdge, ProjectV2FieldOrder, ProjectV2FieldOrderField, ProjectV2FieldType, ProjectV2FieldValue, ProjectV2FieldsArgs, ProjectV2Filters, ProjectV2Item, ProjectV2ItemConnection, ProjectV2ItemContent, ProjectV2ItemEdge, ProjectV2ItemFieldDateValue, ProjectV2ItemFieldIterationValue, ProjectV2ItemFieldLabelValue, ProjectV2ItemFieldLabelValueLabelsArgs, ProjectV2ItemFieldMilestoneValue, ProjectV2ItemFieldNumberValue, ProjectV2ItemFieldPullRequestValue, ProjectV2ItemFieldPullRequestValuePullRequestsArgs, ProjectV2ItemFieldRepositoryValue, ProjectV2ItemFieldReviewerValue, ProjectV2ItemFieldReviewerValueReviewersArgs, ProjectV2ItemFieldSingleSelectValue, ProjectV2ItemFieldTextValue, ProjectV2ItemFieldUserValue, ProjectV2ItemFieldUserValueUsersArgs, ProjectV2ItemFieldValue, ProjectV2ItemFieldValueByNameArgs, ProjectV2ItemFieldValueCommon, ProjectV2ItemFieldValueConnection, ProjectV2ItemFieldValueEdge, ProjectV2ItemFieldValueOrder, ProjectV2ItemFieldValueOrderField, ProjectV2ItemFieldValuesArgs, ProjectV2ItemOrder, ProjectV2ItemOrderField, ProjectV2ItemType, ProjectV2ItemsArgs, ProjectV2IterationField, ProjectV2IterationFieldConfiguration, ProjectV2IterationFieldIteration, ProjectV2Order, ProjectV2OrderField, ProjectV2Owner, ProjectV2OwnerProjectV2Args, ProjectV2OwnerProjectsV2Args, ProjectV2Recent, ProjectV2RecentRecentProjectsArgs, ProjectV2RepositoriesArgs, ProjectV2Roles, ProjectV2SingleSelectField, ProjectV2SingleSelectFieldOption, ProjectV2SingleSelectFieldOptionColor, ProjectV2SingleSelectFieldOptionInput, ProjectV2SingleSelectFieldOptionsArgs, ProjectV2SortBy, ProjectV2SortByConnection, ProjectV2SortByEdge, ProjectV2SortByField, ProjectV2SortByFieldConnection, ProjectV2SortByFieldEdge, ProjectV2State, ProjectV2TeamsArgs, ProjectV2View, ProjectV2ViewArgs, ProjectV2ViewConnection, ProjectV2ViewEdge, ProjectV2ViewFieldsArgs, ProjectV2ViewGroupByArgs, ProjectV2ViewGroupByFieldsArgs, ProjectV2ViewLayout, ProjectV2ViewOrder, ProjectV2ViewOrderField, ProjectV2ViewSortByArgs, ProjectV2ViewSortByFieldsArgs, ProjectV2ViewVerticalGroupByArgs, ProjectV2ViewVerticalGroupByFieldsArgs, ProjectV2ViewVisibleFieldsArgs, ProjectV2ViewsArgs, ProjectV2Workflow, ProjectV2WorkflowArgs, ProjectV2WorkflowConnection, ProjectV2WorkflowEdge, ProjectV2WorkflowOrder, ProjectV2WorkflowsArgs, ProjectV2WorkflowsOrderField, PublicKey, PublicKeyConnection, PublicKeyEdge, PublishSponsorsTierInput, PublishSponsorsTierPayload, PullRequest, PullRequestAssigneesArgs, PullRequestBranchUpdateMethod, PullRequestChangedFile, PullRequestChangedFileConnection, PullRequestChangedFileEdge, PullRequestClosingIssuesReferencesArgs, PullRequestCommentsArgs, PullRequestCommit, PullRequestCommitCommentThread, PullRequestCommitCommentThreadCommentsArgs, PullRequestCommitConnection, PullRequestCommitEdge, PullRequestCommitsArgs, PullRequestConnection, PullRequestContributionsByRepository, PullRequestContributionsByRepositoryContributionsArgs, PullRequestEdge, PullRequestFilesArgs, PullRequestHovercardArgs, PullRequestLabelsArgs, PullRequestLatestOpinionatedReviewsArgs, PullRequestLatestReviewsArgs, PullRequestMergeMethod, PullRequestOrder, PullRequestOrderField, PullRequestParameters, PullRequestParametersInput, PullRequestParticipantsArgs, PullRequestProjectCardsArgs, PullRequestProjectItemsArgs, PullRequestProjectV2Args, PullRequestProjectsV2Args, PullRequestReactionsArgs, PullRequestReview, PullRequestReviewComment, PullRequestReviewCommentConnection, PullRequestReviewCommentEdge, PullRequestReviewCommentReactionsArgs, PullRequestReviewCommentState, PullRequestReviewCommentUserContentEditsArgs, PullRequestReviewCommentsArgs, PullRequestReviewConnection, PullRequestReviewContributionsByRepository, PullRequestReviewContributionsByRepositoryContributionsArgs, PullRequestReviewDecision, PullRequestReviewEdge, PullRequestReviewEvent, PullRequestReviewOnBehalfOfArgs, PullRequestReviewReactionsArgs, PullRequestReviewRequestsArgs, PullRequestReviewState, PullRequestReviewThread, PullRequestReviewThreadCommentsArgs, PullRequestReviewThreadConnection, PullRequestReviewThreadEdge, PullRequestReviewThreadSubjectType, PullRequestReviewThreadsArgs, PullRequestReviewUserContentEditsArgs, PullRequestReviewsArgs, PullRequestRevisionMarker, PullRequestState, PullRequestTemplate, PullRequestThread, PullRequestThreadCommentsArgs, PullRequestTimelineArgs, PullRequestTimelineConnection, PullRequestTimelineItem, PullRequestTimelineItemEdge, PullRequestTimelineItems, PullRequestTimelineItemsArgs, PullRequestTimelineItemsConnection, PullRequestTimelineItemsEdge, PullRequestTimelineItemsItemType, PullRequestUpdateState, PullRequestUserContentEditsArgs, PullRequestViewerMergeBodyTextArgs, PullRequestViewerMergeHeadlineTextArgs, Push, PushAllowance, PushAllowanceActor, PushAllowanceConnection, PushAllowanceEdge, Query, QueryCodeOfConductArgs, QueryEnterpriseAdministratorInvitationArgs, QueryEnterpriseAdministratorInvitationByTokenArgs, QueryEnterpriseArgs, QueryLicenseArgs, QueryMarketplaceCategoriesArgs, QueryMarketplaceCategoryArgs, QueryMarketplaceListingArgs, QueryMarketplaceListingsArgs, QueryNodeArgs, QueryNodesArgs, QueryOrganizationArgs, QueryRateLimitArgs, QueryRepositoryArgs, QueryRepositoryOwnerArgs, QueryResourceArgs, QuerySearchArgs, QuerySecurityAdvisoriesArgs, QuerySecurityAdvisoryArgs, QuerySecurityVulnerabilitiesArgs, QuerySponsorablesArgs, QueryTopicArgs, QueryUserArgs, RateLimit, Reactable, ReactableReactionsArgs, ReactingUserConnection, ReactingUserEdge, Reaction, ReactionConnection, ReactionContent, ReactionEdge, ReactionGroup, ReactionGroupReactorsArgs, ReactionGroupUsersArgs, ReactionOrder, ReactionOrderField, Reactor, ReactorConnection, ReactorEdge, ReadyForReviewEvent, Ref, RefAssociatedPullRequestsArgs, RefCompareArgs, RefConnection, RefEdge, RefNameConditionTarget, RefNameConditionTargetInput, RefOrder, RefOrderField, RefUpdateRule, ReferencedEvent, ReferencedSubject, RegenerateEnterpriseIdentityProviderRecoveryCodesInput, RegenerateEnterpriseIdentityProviderRecoveryCodesPayload, RegenerateVerifiableDomainTokenInput, RegenerateVerifiableDomainTokenPayload, RejectDeploymentsInput, RejectDeploymentsPayload, Release, ReleaseAsset, ReleaseAssetConnection, ReleaseAssetEdge, ReleaseConnection, ReleaseEdge, ReleaseMentionsArgs, ReleaseOrder, ReleaseOrderField, ReleaseReactionsArgs, ReleaseReleaseAssetsArgs, ReleaseShortDescriptionHtmlArgs, RemoveAssigneesFromAssignableInput, RemoveAssigneesFromAssignablePayload, RemoveEnterpriseAdminInput, RemoveEnterpriseAdminPayload, RemoveEnterpriseIdentityProviderInput, RemoveEnterpriseIdentityProviderPayload, RemoveEnterpriseMemberInput, RemoveEnterpriseMemberPayload, RemoveEnterpriseOrganizationInput, RemoveEnterpriseOrganizationPayload, RemoveEnterpriseSupportEntitlementInput, RemoveEnterpriseSupportEntitlementPayload, RemoveLabelsFromLabelableInput, RemoveLabelsFromLabelablePayload, RemoveOutsideCollaboratorInput, RemoveOutsideCollaboratorPayload, RemoveReactionInput, RemoveReactionPayload, RemoveStarInput, RemoveStarPayload, RemoveUpvoteInput, RemoveUpvotePayload, RemovedFromMergeQueueEvent, RemovedFromProjectEvent, RenamedTitleEvent, RenamedTitleSubject, ReopenDiscussionInput, ReopenDiscussionPayload, ReopenIssueInput, ReopenIssuePayload, ReopenPullRequestInput, ReopenPullRequestPayload, ReopenedEvent, RepoAccessAuditEntry, RepoAccessAuditEntryVisibility, RepoAddMemberAuditEntry, RepoAddMemberAuditEntryVisibility, RepoAddTopicAuditEntry, RepoArchivedAuditEntry, RepoArchivedAuditEntryVisibility, RepoChangeMergeSettingAuditEntry, RepoChangeMergeSettingAuditEntryMergeType, RepoConfigDisableAnonymousGitAccessAuditEntry, RepoConfigDisableCollaboratorsOnlyAuditEntry, RepoConfigDisableContributorsOnlyAuditEntry, RepoConfigDisableSockpuppetDisallowedAuditEntry, RepoConfigEnableAnonymousGitAccessAuditEntry, RepoConfigEnableCollaboratorsOnlyAuditEntry, RepoConfigEnableContributorsOnlyAuditEntry, RepoConfigEnableSockpuppetDisallowedAuditEntry, RepoConfigLockAnonymousGitAccessAuditEntry, RepoConfigUnlockAnonymousGitAccessAuditEntry, RepoCreateAuditEntry, RepoCreateAuditEntryVisibility, RepoDestroyAuditEntry, RepoDestroyAuditEntryVisibility, RepoRemoveMemberAuditEntry, RepoRemoveMemberAuditEntryVisibility, RepoRemoveTopicAuditEntry, ReportedContentClassifiers, Repository, RepositoryAffiliation, RepositoryAssignableUsersArgs, RepositoryAuditEntryData, RepositoryBranchProtectionRulesArgs, RepositoryCodeowners, RepositoryCodeownersArgs, RepositoryCodeownersError, RepositoryCollaboratorConnection, RepositoryCollaboratorEdge, RepositoryCollaboratorsArgs, RepositoryCommitCommentsArgs, RepositoryConnection, RepositoryContactLink, RepositoryContributionType, RepositoryDeployKeysArgs, RepositoryDeploymentsArgs, RepositoryDiscussionArgs, RepositoryDiscussionAuthor, RepositoryDiscussionAuthorRepositoryDiscussionsArgs, RepositoryDiscussionCategoriesArgs, RepositoryDiscussionCategoryArgs, RepositoryDiscussionCommentAuthor, RepositoryDiscussionCommentAuthorRepositoryDiscussionCommentsArgs, RepositoryDiscussionsArgs, RepositoryEdge, RepositoryEnvironmentArgs, RepositoryEnvironmentsArgs, RepositoryForksArgs, RepositoryIdConditionTarget, RepositoryIdConditionTargetInput, RepositoryInfo, RepositoryInfoShortDescriptionHtmlArgs, RepositoryInteractionAbility, RepositoryInteractionLimit, RepositoryInteractionLimitExpiry, RepositoryInteractionLimitOrigin, RepositoryInvitation, RepositoryInvitationConnection, RepositoryInvitationEdge, RepositoryInvitationOrder, RepositoryInvitationOrderField, RepositoryIssueArgs, RepositoryIssueOrPullRequestArgs, RepositoryIssuesArgs, RepositoryLabelArgs, RepositoryLabelsArgs, RepositoryLanguagesArgs, RepositoryLockReason, RepositoryMentionableUsersArgs, RepositoryMergeQueueArgs, RepositoryMigration, RepositoryMigrationConnection, RepositoryMigrationEdge, RepositoryMigrationOrder, RepositoryMigrationOrderDirection, RepositoryMigrationOrderField, RepositoryMilestoneArgs, RepositoryMilestonesArgs, RepositoryNameConditionTarget, RepositoryNameConditionTargetInput, RepositoryNode, RepositoryObjectArgs, RepositoryOrder, RepositoryOrderField, RepositoryOwner, RepositoryOwnerAvatarUrlArgs, RepositoryOwnerRepositoriesArgs, RepositoryOwnerRepositoryArgs, RepositoryPackagesArgs, RepositoryPermission, RepositoryPinnedDiscussionsArgs, RepositoryPinnedIssuesArgs, RepositoryPrivacy, RepositoryProjectArgs, RepositoryProjectV2Args, RepositoryProjectsArgs, RepositoryProjectsV2Args, RepositoryPullRequestArgs, RepositoryPullRequestsArgs, RepositoryRecentProjectsArgs, RepositoryRefArgs, RepositoryRefsArgs, RepositoryReleaseArgs, RepositoryReleasesArgs, RepositoryRepositoryTopicsArgs, RepositoryRule, RepositoryRuleConditions, RepositoryRuleConditionsInput, RepositoryRuleConnection, RepositoryRuleEdge, RepositoryRuleInput, RepositoryRuleType, RepositoryRuleset, RepositoryRulesetArgs, RepositoryRulesetBypassActor, RepositoryRulesetBypassActorBypassMode, RepositoryRulesetBypassActorConnection, RepositoryRulesetBypassActorEdge, RepositoryRulesetBypassActorInput, RepositoryRulesetBypassActorsArgs, RepositoryRulesetConnection, RepositoryRulesetEdge, RepositoryRulesetRulesArgs, RepositoryRulesetTarget, RepositoryRulesetsArgs, RepositoryShortDescriptionHtmlArgs, RepositoryStargazersArgs, RepositorySubmodulesArgs, RepositoryTopic, RepositoryTopicConnection, RepositoryTopicEdge, RepositoryVisibility, RepositoryVisibilityChangeDisableAuditEntry, RepositoryVisibilityChangeEnableAuditEntry, RepositoryVulnerabilityAlert, RepositoryVulnerabilityAlertArgs, RepositoryVulnerabilityAlertConnection, RepositoryVulnerabilityAlertDependencyScope, RepositoryVulnerabilityAlertEdge, RepositoryVulnerabilityAlertState, RepositoryVulnerabilityAlertsArgs, RepositoryWatchersArgs, RequestReviewsInput, RequestReviewsPayload, RequestableCheckStatusState, RequestedReviewer, RequestedReviewerConnection, RequestedReviewerEdge, RequirableByPullRequest, RequirableByPullRequestIsRequiredArgs, RequiredDeploymentsParameters, RequiredDeploymentsParametersInput, RequiredStatusCheckDescription, RequiredStatusCheckInput, RequiredStatusChecksParameters, RequiredStatusChecksParametersInput, RerequestCheckSuiteInput, RerequestCheckSuitePayload, ResolveReviewThreadInput, ResolveReviewThreadPayload, RestrictedContribution, RetireSponsorsTierInput, RetireSponsorsTierPayload, RevertPullRequestInput, RevertPullRequestPayload, ReviewDismissalAllowance, ReviewDismissalAllowanceActor, ReviewDismissalAllowanceConnection, ReviewDismissalAllowanceEdge, ReviewDismissedEvent, ReviewRequest, ReviewRequestConnection, ReviewRequestEdge, ReviewRequestRemovedEvent, ReviewRequestedEvent, ReviewStatusHovercardContext, RevokeEnterpriseOrganizationsMigratorRoleInput, RevokeEnterpriseOrganizationsMigratorRolePayload, RevokeEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs, RevokeMigratorRoleInput, RevokeMigratorRolePayload, RoleInOrganization, RuleEnforcement, RuleParameters, RuleParametersInput, RuleSource, SamlDigestAlgorithm, SamlSignatureAlgorithm, SavedReply, SavedReplyConnection, SavedReplyEdge, SavedReplyOrder, SavedReplyOrderField, Scalars, SearchResultItem, SearchResultItemConnection, SearchResultItemEdge, SearchType, SecurityAdvisory, SecurityAdvisoryClassification, SecurityAdvisoryConnection, SecurityAdvisoryCwesArgs, SecurityAdvisoryEcosystem, SecurityAdvisoryEdge, SecurityAdvisoryIdentifier, SecurityAdvisoryIdentifierFilter, SecurityAdvisoryIdentifierType, SecurityAdvisoryOrder, SecurityAdvisoryOrderField, SecurityAdvisoryPackage, SecurityAdvisoryPackageVersion, SecurityAdvisoryReference, SecurityAdvisorySeverity, SecurityAdvisoryVulnerabilitiesArgs, SecurityVulnerability, SecurityVulnerabilityConnection, SecurityVulnerabilityEdge, SecurityVulnerabilityOrder, SecurityVulnerabilityOrderField, SetEnterpriseIdentityProviderInput, SetEnterpriseIdentityProviderPayload, SetOrganizationInteractionLimitInput, SetOrganizationInteractionLimitPayload, SetRepositoryInteractionLimitInput, SetRepositoryInteractionLimitPayload, SetUserInteractionLimitInput, SetUserInteractionLimitPayload, SmimeSignature, SocialAccount, SocialAccountConnection, SocialAccountEdge, SocialAccountProvider, Sponsor, SponsorConnection, SponsorEdge, SponsorOrder, SponsorOrderField, Sponsorable, SponsorableIsSponsoredByArgs, SponsorableItem, SponsorableItemConnection, SponsorableItemEdge, SponsorableOrder, SponsorableOrderField, SponsorableSponsoringArgs, SponsorableSponsorsActivitiesArgs, SponsorableSponsorsArgs, SponsorableSponsorshipForViewerAsSponsorArgs, SponsorableSponsorshipForViewerAsSponsorableArgs, SponsorableSponsorshipNewslettersArgs, SponsorableSponsorshipsAsMaintainerArgs, SponsorableSponsorshipsAsSponsorArgs, SponsorableTotalSponsorshipAmountAsSponsorInCentsArgs, SponsorsActivity, SponsorsActivityAction, SponsorsActivityConnection, SponsorsActivityEdge, SponsorsActivityOrder, SponsorsActivityOrderField, SponsorsActivityPeriod, SponsorsCountryOrRegionCode, SponsorsGoal, SponsorsGoalKind, SponsorsListing, SponsorsListingFeatureableItem, SponsorsListingFeaturedItem, SponsorsListingFeaturedItemFeatureableType, SponsorsListingFeaturedItemsArgs, SponsorsListingTiersArgs, SponsorsTier, SponsorsTierAdminInfo, SponsorsTierAdminInfoSponsorshipsArgs, SponsorsTierConnection, SponsorsTierEdge, SponsorsTierOrder, SponsorsTierOrderField, Sponsorship, SponsorshipConnection, SponsorshipEdge, SponsorshipNewsletter, SponsorshipNewsletterConnection, SponsorshipNewsletterEdge, SponsorshipNewsletterOrder, SponsorshipNewsletterOrderField, SponsorshipOrder, SponsorshipOrderField, SponsorshipPaymentSource, SponsorshipPrivacy, SquashMergeCommitMessage, SquashMergeCommitTitle, SshSignature, StarOrder, StarOrderField, StargazerConnection, StargazerEdge, Starrable, StarrableStargazersArgs, StarredRepositoryConnection, StarredRepositoryEdge, StartOrganizationMigrationInput, StartOrganizationMigrationPayload, StartRepositoryMigrationInput, StartRepositoryMigrationPayload, Status, StatusCheckConfiguration, StatusCheckConfigurationInput, StatusCheckRollup, StatusCheckRollupContext, StatusCheckRollupContextConnection, StatusCheckRollupContextEdge, StatusCheckRollupContextsArgs, StatusCombinedContextsArgs, StatusContext, StatusContextArgs, StatusContextAvatarUrlArgs, StatusContextIsRequiredArgs, StatusContextStateCount, StatusState, StripeConnectAccount, SubmitPullRequestReviewInput, SubmitPullRequestReviewPayload, Submodule, SubmoduleConnection, SubmoduleEdge, Subscribable, SubscribableThread, SubscribedEvent, SubscriptionState, SuggestedReviewer, Tag, TagNamePatternParameters, TagNamePatternParametersInput, Team, TeamAddMemberAuditEntry, TeamAddRepositoryAuditEntry, TeamAncestorsArgs, TeamAuditEntryData, TeamAvatarUrlArgs, TeamChangeParentTeamAuditEntry, TeamChildTeamsArgs, TeamConnection, TeamDiscussion, TeamDiscussionArgs, TeamDiscussionComment, TeamDiscussionCommentConnection, TeamDiscussionCommentEdge, TeamDiscussionCommentOrder, TeamDiscussionCommentOrderField, TeamDiscussionCommentReactionsArgs, TeamDiscussionCommentUserContentEditsArgs, TeamDiscussionCommentsArgs, TeamDiscussionConnection, TeamDiscussionEdge, TeamDiscussionOrder, TeamDiscussionOrderField, TeamDiscussionReactionsArgs, TeamDiscussionUserContentEditsArgs, TeamDiscussionsArgs, TeamEdge, TeamInvitationsArgs, TeamMemberConnection, TeamMemberEdge, TeamMemberOrder, TeamMemberOrderField, TeamMemberRole, TeamMemberStatusesArgs, TeamMembersArgs, TeamMembershipType, TeamNotificationSetting, TeamOrder, TeamOrderField, TeamPrivacy, TeamProjectV2Args, TeamProjectsV2Args, TeamRemoveMemberAuditEntry, TeamRemoveRepositoryAuditEntry, TeamRepositoriesArgs, TeamRepositoryConnection, TeamRepositoryEdge, TeamRepositoryOrder, TeamRepositoryOrderField, TeamRole, TextMatch, TextMatchHighlight, ThreadSubscriptionFormAction, ThreadSubscriptionState, Topic, TopicAuditEntryData, TopicRelatedTopicsArgs, TopicRepositoriesArgs, TopicStargazersArgs, TopicSuggestionDeclineReason, TrackedIssueStates, TransferEnterpriseOrganizationInput, TransferEnterpriseOrganizationPayload, TransferIssueInput, TransferIssuePayload, TransferredEvent, Tree, TreeEntry, UnarchiveProjectV2ItemInput, UnarchiveProjectV2ItemPayload, UnarchiveRepositoryInput, UnarchiveRepositoryPayload, UnassignedEvent, UnfollowOrganizationInput, UnfollowOrganizationPayload, UnfollowUserInput, UnfollowUserPayload, UniformResourceLocatable, UnknownSignature, UnlabeledEvent, UnlinkProjectV2FromRepositoryInput, UnlinkProjectV2FromRepositoryPayload, UnlinkProjectV2FromTeamInput, UnlinkProjectV2FromTeamPayload, UnlinkRepositoryFromProjectInput, UnlinkRepositoryFromProjectPayload, UnlockLockableInput, UnlockLockablePayload, UnlockedEvent, UnmarkDiscussionCommentAsAnswerInput, UnmarkDiscussionCommentAsAnswerPayload, UnmarkFileAsViewedInput, UnmarkFileAsViewedPayload, UnmarkIssueAsDuplicateInput, UnmarkIssueAsDuplicatePayload, UnmarkProjectV2AsTemplateInput, UnmarkProjectV2AsTemplatePayload, UnmarkedAsDuplicateEvent, UnminimizeCommentInput, UnminimizeCommentPayload, UnpinIssueInput, UnpinIssuePayload, UnpinnedEvent, UnresolveReviewThreadInput, UnresolveReviewThreadPayload, UnsubscribeFromNotificationsInput, UnsubscribeFromNotificationsPayload, UnsubscribedEvent, Updatable, UpdatableComment, UpdateBranchProtectionRuleInput, UpdateBranchProtectionRulePayload, UpdateCheckRunInput, UpdateCheckRunPayload, UpdateCheckSuitePreferencesInput, UpdateCheckSuitePreferencesPayload, UpdateDiscussionCommentInput, UpdateDiscussionCommentPayload, UpdateDiscussionInput, UpdateDiscussionPayload, UpdateEnterpriseAdministratorRoleInput, UpdateEnterpriseAdministratorRolePayload, UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput, UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload, UpdateEnterpriseDefaultRepositoryPermissionSettingInput, UpdateEnterpriseDefaultRepositoryPermissionSettingPayload, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload, UpdateEnterpriseMembersCanCreateRepositoriesSettingInput, UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload, UpdateEnterpriseMembersCanDeleteIssuesSettingInput, UpdateEnterpriseMembersCanDeleteIssuesSettingPayload, UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput, UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload, UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput, UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload, UpdateEnterpriseMembersCanMakePurchasesSettingInput, UpdateEnterpriseMembersCanMakePurchasesSettingPayload, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload, UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput, UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload, UpdateEnterpriseOrganizationProjectsSettingInput, UpdateEnterpriseOrganizationProjectsSettingPayload, UpdateEnterpriseOwnerOrganizationRoleInput, UpdateEnterpriseOwnerOrganizationRolePayload, UpdateEnterpriseProfileInput, UpdateEnterpriseProfilePayload, UpdateEnterpriseRepositoryProjectsSettingInput, UpdateEnterpriseRepositoryProjectsSettingPayload, UpdateEnterpriseTeamDiscussionsSettingInput, UpdateEnterpriseTeamDiscussionsSettingPayload, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload, UpdateEnvironmentInput, UpdateEnvironmentPayload, UpdateIpAllowListEnabledSettingInput, UpdateIpAllowListEnabledSettingPayload, UpdateIpAllowListEntryInput, UpdateIpAllowListEntryPayload, UpdateIpAllowListForInstalledAppsEnabledSettingInput, UpdateIpAllowListForInstalledAppsEnabledSettingPayload, UpdateIssueCommentInput, UpdateIssueCommentPayload, UpdateIssueInput, UpdateIssuePayload, UpdateNotificationRestrictionSettingInput, UpdateNotificationRestrictionSettingPayload, UpdateOrganizationAllowPrivateRepositoryForkingSettingInput, UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload, UpdateOrganizationWebCommitSignoffSettingInput, UpdateOrganizationWebCommitSignoffSettingPayload, UpdateParameters, UpdateParametersInput, UpdatePatreonSponsorabilityInput, UpdatePatreonSponsorabilityPayload, UpdateProjectCardInput, UpdateProjectCardPayload, UpdateProjectColumnInput, UpdateProjectColumnPayload, UpdateProjectInput, UpdateProjectPayload, UpdateProjectV2CollaboratorsInput, UpdateProjectV2CollaboratorsPayload, UpdateProjectV2CollaboratorsPayloadCollaboratorsArgs, UpdateProjectV2DraftIssueInput, UpdateProjectV2DraftIssuePayload, UpdateProjectV2Input, UpdateProjectV2ItemFieldValueInput, UpdateProjectV2ItemFieldValuePayload, UpdateProjectV2ItemPositionInput, UpdateProjectV2ItemPositionPayload, UpdateProjectV2ItemPositionPayloadItemsArgs, UpdateProjectV2Payload, UpdatePullRequestBranchInput, UpdatePullRequestBranchPayload, UpdatePullRequestInput, UpdatePullRequestPayload, UpdatePullRequestReviewCommentInput, UpdatePullRequestReviewCommentPayload, UpdatePullRequestReviewInput, UpdatePullRequestReviewPayload, UpdateRefInput, UpdateRefPayload, UpdateRepositoryInput, UpdateRepositoryPayload, UpdateRepositoryRulesetInput, UpdateRepositoryRulesetPayload, UpdateRepositoryWebCommitSignoffSettingInput, UpdateRepositoryWebCommitSignoffSettingPayload, UpdateSponsorshipPreferencesInput, UpdateSponsorshipPreferencesPayload, UpdateSubscriptionInput, UpdateSubscriptionPayload, UpdateTeamDiscussionCommentInput, UpdateTeamDiscussionCommentPayload, UpdateTeamDiscussionInput, UpdateTeamDiscussionPayload, 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, UserList, UserListConnection, UserListEdge, UserListItems, UserListItemsArgs, UserListItemsConnection, UserListItemsEdge, UserListSuggestion, UserListsArgs, UserOrganizationArgs, UserOrganizationVerifiedDomainEmailsArgs, UserOrganizationsArgs, UserPackagesArgs, UserPinnableItemsArgs, UserPinnedItemsArgs, UserProjectArgs, UserProjectV2Args, UserProjectsArgs, UserProjectsV2Args, UserPublicKeysArgs, UserPullRequestsArgs, UserRecentProjectsArgs, UserRepositoriesArgs, UserRepositoriesContributedToArgs, UserRepositoryArgs, UserRepositoryDiscussionCommentsArgs, UserRepositoryDiscussionsArgs, UserSavedRepliesArgs, UserSocialAccountsArgs, UserSponsoringArgs, UserSponsorsActivitiesArgs, UserSponsorsArgs, UserSponsorshipForViewerAsSponsorArgs, UserSponsorshipForViewerAsSponsorableArgs, UserSponsorshipNewslettersArgs, UserSponsorshipsAsMaintainerArgs, UserSponsorshipsAsSponsorArgs, UserStarredRepositoriesArgs, UserStatus, UserStatusConnection, UserStatusEdge, UserStatusOrder, UserStatusOrderField, UserTopRepositoriesArgs, UserTotalSponsorshipAmountAsSponsorInCentsArgs, UserWatchingArgs, VerifiableDomain, VerifiableDomainConnection, VerifiableDomainEdge, VerifiableDomainOrder, VerifiableDomainOrderField, VerifiableDomainOwner, VerifyVerifiableDomainInput, VerifyVerifiableDomainPayload, ViewerHovercardContext, Votable, Workflow, WorkflowFileReference, WorkflowFileReferenceInput, WorkflowRun, WorkflowRunConnection, WorkflowRunDeploymentReviewsArgs, WorkflowRunEdge, WorkflowRunFile, WorkflowRunOrder, WorkflowRunOrderField, WorkflowRunPendingDeploymentRequestsArgs, WorkflowRunsArgs, WorkflowState, WorkflowsParameters, WorkflowsParametersInput };
27036
+ export type { AbortQueuedMigrationsInput, AbortQueuedMigrationsPayload, AbortRepositoryMigrationInput, AbortRepositoryMigrationPayload, AcceptEnterpriseAdministratorInvitationInput, AcceptEnterpriseAdministratorInvitationPayload, AcceptTopicSuggestionInput, AcceptTopicSuggestionPayload, Actor, ActorAvatarUrlArgs, ActorLocation, ActorType, AddAssigneesToAssignableInput, AddAssigneesToAssignablePayload, AddCommentInput, AddCommentPayload, AddDiscussionCommentInput, AddDiscussionCommentPayload, AddDiscussionPollVoteInput, AddDiscussionPollVotePayload, AddEnterpriseOrganizationMemberInput, AddEnterpriseOrganizationMemberPayload, AddEnterpriseSupportEntitlementInput, AddEnterpriseSupportEntitlementPayload, AddLabelsToLabelableInput, AddLabelsToLabelablePayload, AddProjectCardInput, AddProjectCardPayload, AddProjectColumnInput, AddProjectColumnPayload, AddProjectV2DraftIssueInput, AddProjectV2DraftIssuePayload, AddProjectV2ItemByIdInput, AddProjectV2ItemByIdPayload, AddPullRequestReviewCommentInput, AddPullRequestReviewCommentPayload, AddPullRequestReviewInput, AddPullRequestReviewPayload, AddPullRequestReviewThreadInput, AddPullRequestReviewThreadPayload, AddPullRequestReviewThreadReplyInput, AddPullRequestReviewThreadReplyPayload, AddReactionInput, AddReactionPayload, AddStarInput, AddStarPayload, AddUpvoteInput, AddUpvotePayload, AddVerifiableDomainInput, AddVerifiableDomainPayload, AddedToMergeQueueEvent, AddedToProjectEvent, AnnouncementBanner, App, AppIpAllowListEntriesArgs, AppLogoUrlArgs, ApproveDeploymentsInput, ApproveDeploymentsPayload, ApproveVerifiableDomainInput, ApproveVerifiableDomainPayload, ArchiveProjectV2ItemInput, ArchiveProjectV2ItemPayload, ArchiveRepositoryInput, ArchiveRepositoryPayload, Assignable, AssignableAssigneesArgs, AssignedEvent, Assignee, AuditEntry, AuditEntryActor, AuditLogOrder, AuditLogOrderField, AutoMergeDisabledEvent, AutoMergeEnabledEvent, AutoMergeRequest, AutoRebaseEnabledEvent, AutoSquashEnabledEvent, AutomaticBaseChangeFailedEvent, AutomaticBaseChangeSucceededEvent, BaseRefChangedEvent, BaseRefDeletedEvent, BaseRefForcePushedEvent, Blame, BlameRange, Blob, Bot, BotAvatarUrlArgs, BranchActorAllowanceActor, BranchNamePatternParameters, BranchNamePatternParametersInput, BranchProtectionRule, BranchProtectionRuleBranchProtectionRuleConflictsArgs, BranchProtectionRuleBypassForcePushAllowancesArgs, BranchProtectionRuleBypassPullRequestAllowancesArgs, BranchProtectionRuleConflict, BranchProtectionRuleConflictConnection, BranchProtectionRuleConflictEdge, BranchProtectionRuleConnection, BranchProtectionRuleEdge, BranchProtectionRuleMatchingRefsArgs, BranchProtectionRulePushAllowancesArgs, BranchProtectionRuleReviewDismissalAllowancesArgs, BulkSponsorship, BypassActor, BypassForcePushAllowance, BypassForcePushAllowanceConnection, BypassForcePushAllowanceEdge, BypassPullRequestAllowance, BypassPullRequestAllowanceConnection, BypassPullRequestAllowanceEdge, CancelEnterpriseAdminInvitationInput, CancelEnterpriseAdminInvitationPayload, CancelSponsorshipInput, CancelSponsorshipPayload, ChangeUserStatusInput, ChangeUserStatusPayload, CheckAnnotation, CheckAnnotationConnection, CheckAnnotationData, CheckAnnotationEdge, CheckAnnotationLevel, CheckAnnotationPosition, CheckAnnotationRange, CheckAnnotationSpan, CheckConclusionState, CheckRun, CheckRunAction, CheckRunAnnotationsArgs, CheckRunConnection, CheckRunEdge, CheckRunFilter, CheckRunIsRequiredArgs, CheckRunOutput, CheckRunOutputImage, CheckRunState, CheckRunStateCount, CheckRunStepsArgs, CheckRunType, CheckStatusState, CheckStep, CheckStepConnection, CheckStepEdge, CheckSuite, CheckSuiteAutoTriggerPreference, CheckSuiteCheckRunsArgs, CheckSuiteConnection, CheckSuiteEdge, CheckSuiteFilter, CheckSuiteMatchingPullRequestsArgs, Claimable, ClearLabelsFromLabelableInput, ClearLabelsFromLabelablePayload, ClearProjectV2ItemFieldValueInput, ClearProjectV2ItemFieldValuePayload, CloneProjectInput, CloneProjectPayload, CloneTemplateRepositoryInput, CloneTemplateRepositoryPayload, Closable, CloseDiscussionInput, CloseDiscussionPayload, CloseIssueInput, CloseIssuePayload, ClosePullRequestInput, ClosePullRequestPayload, ClosedEvent, Closer, CodeOfConduct, CollaboratorAffiliation, Comment, CommentAuthorAssociation, CommentCannotUpdateReason, CommentDeletedEvent, CommentUserContentEditsArgs, Commit, CommitAssociatedPullRequestsArgs, CommitAuthor, CommitAuthorEmailPatternParameters, CommitAuthorEmailPatternParametersInput, CommitAuthorsArgs, CommitBlameArgs, CommitCheckSuitesArgs, CommitComment, CommitCommentConnection, CommitCommentEdge, CommitCommentReactionsArgs, CommitCommentThread, CommitCommentThreadCommentsArgs, CommitCommentUserContentEditsArgs, CommitCommentsArgs, CommitConnection, CommitContributionOrder, CommitContributionOrderField, CommitContributionsByRepository, CommitContributionsByRepositoryContributionsArgs, CommitDeploymentsArgs, CommitEdge, CommitFileArgs, CommitHistoryArgs, CommitHistoryConnection, CommitMessage, CommitMessagePatternParameters, CommitMessagePatternParametersInput, CommitParentsArgs, CommitSubmodulesArgs, CommittableBranch, CommitterEmailPatternParameters, CommitterEmailPatternParametersInput, Comparison, ComparisonCommitConnection, ComparisonCommitsArgs, ComparisonStatus, ConnectedEvent, ContributingGuidelines, Contribution, ContributionCalendar, ContributionCalendarDay, ContributionCalendarMonth, ContributionCalendarWeek, ContributionLevel, ContributionOrder, ContributionsCollection, ContributionsCollectionCommitContributionsByRepositoryArgs, ContributionsCollectionIssueContributionsArgs, ContributionsCollectionIssueContributionsByRepositoryArgs, ContributionsCollectionPullRequestContributionsArgs, ContributionsCollectionPullRequestContributionsByRepositoryArgs, ContributionsCollectionPullRequestReviewContributionsArgs, ContributionsCollectionPullRequestReviewContributionsByRepositoryArgs, ContributionsCollectionRepositoryContributionsArgs, ContributionsCollectionTotalIssueContributionsArgs, ContributionsCollectionTotalPullRequestContributionsArgs, ContributionsCollectionTotalRepositoriesWithContributedIssuesArgs, ContributionsCollectionTotalRepositoriesWithContributedPullRequestsArgs, ContributionsCollectionTotalRepositoryContributionsArgs, ConvertProjectCardNoteToIssueInput, ConvertProjectCardNoteToIssuePayload, ConvertPullRequestToDraftInput, ConvertPullRequestToDraftPayload, ConvertToDraftEvent, ConvertedNoteToIssueEvent, ConvertedToDiscussionEvent, CopyProjectV2Input, CopyProjectV2Payload, CreateAttributionInvitationInput, CreateAttributionInvitationPayload, CreateBranchProtectionRuleInput, CreateBranchProtectionRulePayload, CreateCheckRunInput, CreateCheckRunPayload, CreateCheckSuiteInput, CreateCheckSuitePayload, CreateCommitOnBranchInput, CreateCommitOnBranchPayload, CreateDiscussionInput, CreateDiscussionPayload, CreateEnterpriseOrganizationInput, CreateEnterpriseOrganizationPayload, CreateEnvironmentInput, CreateEnvironmentPayload, CreateIpAllowListEntryInput, CreateIpAllowListEntryPayload, CreateIssueInput, CreateIssuePayload, CreateLinkedBranchInput, CreateLinkedBranchPayload, CreateMigrationSourceInput, CreateMigrationSourcePayload, CreateProjectInput, CreateProjectPayload, CreateProjectV2FieldInput, CreateProjectV2FieldPayload, CreateProjectV2Input, CreateProjectV2Payload, CreatePullRequestInput, CreatePullRequestPayload, CreateRefInput, CreateRefPayload, CreateRepositoryInput, CreateRepositoryPayload, CreateRepositoryRulesetInput, CreateRepositoryRulesetPayload, CreateSponsorsListingInput, CreateSponsorsListingPayload, CreateSponsorsTierInput, CreateSponsorsTierPayload, CreateSponsorshipInput, CreateSponsorshipPayload, CreateSponsorshipsInput, CreateSponsorshipsPayload, CreateTeamDiscussionCommentInput, CreateTeamDiscussionCommentPayload, CreateTeamDiscussionInput, CreateTeamDiscussionPayload, CreateUserListInput, CreateUserListPayload, CreatedCommitContribution, CreatedCommitContributionConnection, CreatedCommitContributionEdge, CreatedIssueContribution, CreatedIssueContributionConnection, CreatedIssueContributionEdge, CreatedIssueOrRestrictedContribution, CreatedPullRequestContribution, CreatedPullRequestContributionConnection, CreatedPullRequestContributionEdge, CreatedPullRequestOrRestrictedContribution, CreatedPullRequestReviewContribution, CreatedPullRequestReviewContributionConnection, CreatedPullRequestReviewContributionEdge, CreatedRepositoryContribution, CreatedRepositoryContributionConnection, CreatedRepositoryContributionEdge, CreatedRepositoryOrRestrictedContribution, CrossReferencedEvent, Cvss, Cwe, CweConnection, CweEdge, DeclineTopicSuggestionInput, DeclineTopicSuggestionPayload, DefaultRepositoryPermissionField, Deletable, DeleteBranchProtectionRuleInput, DeleteBranchProtectionRulePayload, DeleteDeploymentInput, DeleteDeploymentPayload, DeleteDiscussionCommentInput, DeleteDiscussionCommentPayload, DeleteDiscussionInput, DeleteDiscussionPayload, DeleteEnvironmentInput, DeleteEnvironmentPayload, DeleteIpAllowListEntryInput, DeleteIpAllowListEntryPayload, DeleteIssueCommentInput, DeleteIssueCommentPayload, DeleteIssueInput, DeleteIssuePayload, DeleteLinkedBranchInput, DeleteLinkedBranchPayload, DeleteProjectCardInput, DeleteProjectCardPayload, DeleteProjectColumnInput, DeleteProjectColumnPayload, DeleteProjectInput, DeleteProjectPayload, DeleteProjectV2FieldInput, DeleteProjectV2FieldPayload, DeleteProjectV2Input, DeleteProjectV2ItemInput, DeleteProjectV2ItemPayload, DeleteProjectV2Payload, DeleteProjectV2WorkflowInput, DeleteProjectV2WorkflowPayload, DeletePullRequestReviewCommentInput, DeletePullRequestReviewCommentPayload, DeletePullRequestReviewInput, DeletePullRequestReviewPayload, DeleteRefInput, DeleteRefPayload, DeleteRepositoryRulesetInput, DeleteRepositoryRulesetPayload, DeleteTeamDiscussionCommentInput, DeleteTeamDiscussionCommentPayload, DeleteTeamDiscussionInput, DeleteTeamDiscussionPayload, DeleteUserListInput, DeleteUserListPayload, DeleteVerifiableDomainInput, DeleteVerifiableDomainPayload, DemilestonedEvent, DependabotUpdate, DependabotUpdateError, DependencyGraphEcosystem, DeployKey, DeployKeyConnection, DeployKeyEdge, DeployedEvent, Deployment, DeploymentConnection, DeploymentEdge, DeploymentEnvironmentChangedEvent, DeploymentOrder, DeploymentOrderField, DeploymentProtectionRule, DeploymentProtectionRuleConnection, DeploymentProtectionRuleEdge, DeploymentProtectionRuleReviewersArgs, DeploymentProtectionRuleType, DeploymentRequest, DeploymentRequestConnection, DeploymentRequestEdge, DeploymentRequestReviewersArgs, DeploymentReview, DeploymentReviewConnection, DeploymentReviewEdge, DeploymentReviewEnvironmentsArgs, DeploymentReviewState, DeploymentReviewer, DeploymentReviewerConnection, DeploymentReviewerEdge, DeploymentState, DeploymentStatus, DeploymentStatusConnection, DeploymentStatusEdge, DeploymentStatusState, DeploymentStatusesArgs, DequeuePullRequestInput, DequeuePullRequestPayload, DiffSide, DisablePullRequestAutoMergeInput, DisablePullRequestAutoMergePayload, DisconnectedEvent, Discussion, DiscussionCategory, DiscussionCategoryConnection, DiscussionCategoryEdge, DiscussionCloseReason, DiscussionComment, DiscussionCommentConnection, DiscussionCommentEdge, DiscussionCommentReactionsArgs, DiscussionCommentRepliesArgs, DiscussionCommentUserContentEditsArgs, DiscussionCommentsArgs, DiscussionConnection, DiscussionEdge, DiscussionLabelsArgs, DiscussionOrder, DiscussionOrderField, DiscussionPoll, DiscussionPollOption, DiscussionPollOptionConnection, DiscussionPollOptionEdge, DiscussionPollOptionOrder, DiscussionPollOptionOrderField, DiscussionPollOptionsArgs, DiscussionReactionsArgs, DiscussionState, DiscussionStateReason, DiscussionUserContentEditsArgs, DismissPullRequestReviewInput, DismissPullRequestReviewPayload, DismissReason, DismissRepositoryVulnerabilityAlertInput, DismissRepositoryVulnerabilityAlertPayload, DraftIssue, DraftIssueAssigneesArgs, DraftIssueProjectV2ItemsArgs, DraftIssueProjectsV2Args, DraftPullRequestReviewComment, DraftPullRequestReviewThread, EnablePullRequestAutoMergeInput, EnablePullRequestAutoMergePayload, EnqueuePullRequestInput, EnqueuePullRequestPayload, Enterprise, EnterpriseAdministratorConnection, EnterpriseAdministratorEdge, EnterpriseAdministratorInvitation, EnterpriseAdministratorInvitationConnection, EnterpriseAdministratorInvitationEdge, EnterpriseAdministratorInvitationOrder, EnterpriseAdministratorInvitationOrderField, EnterpriseAdministratorRole, EnterpriseAllowPrivateRepositoryForkingPolicyValue, EnterpriseAuditEntryData, EnterpriseAvatarUrlArgs, EnterpriseBillingInfo, EnterpriseConnection, EnterpriseDefaultRepositoryPermissionSettingValue, EnterpriseEdge, EnterpriseEnabledDisabledSettingValue, EnterpriseEnabledSettingValue, EnterpriseFailedInvitationConnection, EnterpriseFailedInvitationEdge, EnterpriseIdentityProvider, EnterpriseIdentityProviderExternalIdentitiesArgs, EnterpriseMember, EnterpriseMemberConnection, EnterpriseMemberEdge, EnterpriseMemberOrder, EnterpriseMemberOrderField, EnterpriseMembersArgs, EnterpriseMembersCanCreateRepositoriesSettingValue, EnterpriseMembersCanMakePurchasesSettingValue, EnterpriseMembershipType, EnterpriseOrder, EnterpriseOrderField, EnterpriseOrganizationMembershipConnection, EnterpriseOrganizationMembershipEdge, EnterpriseOrganizationsArgs, EnterpriseOutsideCollaboratorConnection, EnterpriseOutsideCollaboratorEdge, EnterpriseOutsideCollaboratorEdgeRepositoriesArgs, EnterpriseOwnerInfo, EnterpriseOwnerInfoAdminsArgs, EnterpriseOwnerInfoAffiliatedUsersWithTwoFactorDisabledArgs, EnterpriseOwnerInfoAllowPrivateRepositoryForkingSettingOrganizationsArgs, EnterpriseOwnerInfoDefaultRepositoryPermissionSettingOrganizationsArgs, EnterpriseOwnerInfoDomainsArgs, EnterpriseOwnerInfoEnterpriseServerInstallationsArgs, EnterpriseOwnerInfoFailedInvitationsArgs, EnterpriseOwnerInfoIpAllowListEntriesArgs, EnterpriseOwnerInfoMembersCanChangeRepositoryVisibilitySettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanCreateRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteIssuesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanDeleteRepositoriesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanInviteCollaboratorsSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanUpdateProtectedBranchesSettingOrganizationsArgs, EnterpriseOwnerInfoMembersCanViewDependencyInsightsSettingOrganizationsArgs, EnterpriseOwnerInfoOrganizationProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoOutsideCollaboratorsArgs, EnterpriseOwnerInfoPendingAdminInvitationsArgs, EnterpriseOwnerInfoPendingCollaboratorInvitationsArgs, EnterpriseOwnerInfoPendingMemberInvitationsArgs, EnterpriseOwnerInfoRepositoryProjectsSettingOrganizationsArgs, EnterpriseOwnerInfoSamlIdentityProviderSettingOrganizationsArgs, EnterpriseOwnerInfoSupportEntitlementsArgs, EnterpriseOwnerInfoTeamDiscussionsSettingOrganizationsArgs, EnterpriseOwnerInfoTwoFactorRequiredSettingOrganizationsArgs, EnterprisePendingMemberInvitationConnection, EnterprisePendingMemberInvitationEdge, EnterpriseRepositoryInfo, EnterpriseRepositoryInfoConnection, EnterpriseRepositoryInfoEdge, EnterpriseServerInstallation, EnterpriseServerInstallationConnection, EnterpriseServerInstallationEdge, EnterpriseServerInstallationMembershipConnection, EnterpriseServerInstallationMembershipEdge, EnterpriseServerInstallationOrder, EnterpriseServerInstallationOrderField, EnterpriseServerInstallationUserAccountsArgs, EnterpriseServerInstallationUserAccountsUploadsArgs, EnterpriseServerUserAccount, EnterpriseServerUserAccountConnection, EnterpriseServerUserAccountEdge, EnterpriseServerUserAccountEmail, EnterpriseServerUserAccountEmailConnection, EnterpriseServerUserAccountEmailEdge, EnterpriseServerUserAccountEmailOrder, EnterpriseServerUserAccountEmailOrderField, EnterpriseServerUserAccountEmailsArgs, EnterpriseServerUserAccountOrder, EnterpriseServerUserAccountOrderField, EnterpriseServerUserAccountsUpload, EnterpriseServerUserAccountsUploadConnection, EnterpriseServerUserAccountsUploadEdge, EnterpriseServerUserAccountsUploadOrder, EnterpriseServerUserAccountsUploadOrderField, EnterpriseServerUserAccountsUploadSyncState, EnterpriseUserAccount, EnterpriseUserAccountAvatarUrlArgs, EnterpriseUserAccountEnterpriseInstallationsArgs, EnterpriseUserAccountMembershipRole, EnterpriseUserAccountOrganizationsArgs, EnterpriseUserDeployment, Environment, EnvironmentConnection, EnvironmentEdge, EnvironmentOrderField, EnvironmentProtectionRulesArgs, Environments, Exact, ExternalIdentity, ExternalIdentityAttribute, ExternalIdentityConnection, ExternalIdentityEdge, ExternalIdentitySamlAttributes, ExternalIdentityScimAttributes, FileAddition, FileChanges, FileDeletion, 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, Incremental, InputMaybe, InviteEnterpriseAdminInput, InviteEnterpriseAdminPayload, IpAllowListEnabledSettingValue, IpAllowListEntry, IpAllowListEntryConnection, IpAllowListEntryEdge, IpAllowListEntryOrder, IpAllowListEntryOrderField, IpAllowListForInstalledAppsEnabledSettingValue, IpAllowListOwner, Issue, IssueAssigneesArgs, IssueClosedStateReason, IssueComment, IssueCommentConnection, IssueCommentEdge, IssueCommentOrder, IssueCommentOrderField, IssueCommentReactionsArgs, IssueCommentUserContentEditsArgs, IssueCommentsArgs, IssueConnection, IssueContributionsByRepository, IssueContributionsByRepositoryContributionsArgs, IssueEdge, IssueFilters, IssueHovercardArgs, IssueLabelsArgs, IssueLinkedBranchesArgs, IssueOrPullRequest, IssueOrder, IssueOrderField, IssueParticipantsArgs, IssueProjectCardsArgs, IssueProjectItemsArgs, IssueProjectV2Args, IssueProjectsV2Args, IssueReactionsArgs, IssueState, IssueStateReason, IssueTemplate, IssueTemplateAssigneesArgs, IssueTemplateLabelsArgs, IssueTimelineArgs, IssueTimelineConnection, IssueTimelineItem, IssueTimelineItemEdge, IssueTimelineItems, IssueTimelineItemsArgs, IssueTimelineItemsConnection, IssueTimelineItemsEdge, IssueTimelineItemsItemType, IssueTrackedInIssuesArgs, IssueTrackedIssuesArgs, IssueTrackedIssuesCountArgs, IssueUserContentEditsArgs, JoinedGitHubContribution, Label, LabelConnection, LabelEdge, LabelIssuesArgs, LabelOrder, LabelOrderField, LabelPullRequestsArgs, Labelable, LabelableLabelsArgs, LabeledEvent, Language, LanguageConnection, LanguageEdge, LanguageOrder, LanguageOrderField, License, LicenseRule, LinkProjectV2ToRepositoryInput, LinkProjectV2ToRepositoryPayload, LinkProjectV2ToTeamInput, LinkProjectV2ToTeamPayload, LinkRepositoryToProjectInput, LinkRepositoryToProjectPayload, LinkedBranch, LinkedBranchConnection, LinkedBranchEdge, LockLockableInput, LockLockablePayload, LockReason, Lockable, LockedEvent, MakeEmpty, MakeMaybe, MakeOptional, Mannequin, MannequinAvatarUrlArgs, MannequinConnection, MannequinEdge, MannequinOrder, MannequinOrderField, MarkDiscussionCommentAsAnswerInput, MarkDiscussionCommentAsAnswerPayload, MarkFileAsViewedInput, MarkFileAsViewedPayload, MarkProjectV2AsTemplateInput, MarkProjectV2AsTemplatePayload, MarkPullRequestReadyForReviewInput, MarkPullRequestReadyForReviewPayload, MarkedAsDuplicateEvent, MarketplaceCategory, MarketplaceListing, MarketplaceListingConnection, MarketplaceListingEdge, MarketplaceListingLogoUrlArgs, Maybe, MemberFeatureRequestNotification, MemberStatusable, MemberStatusableMemberStatusesArgs, MembersCanDeleteReposClearAuditEntry, MembersCanDeleteReposDisableAuditEntry, MembersCanDeleteReposEnableAuditEntry, MentionedEvent, MergeBranchInput, MergeBranchPayload, MergeCommitMessage, MergeCommitTitle, MergePullRequestInput, MergePullRequestPayload, MergeQueue, MergeQueueConfiguration, MergeQueueEntriesArgs, MergeQueueEntry, MergeQueueEntryConnection, MergeQueueEntryEdge, MergeQueueEntryState, MergeQueueMergingStrategy, MergeableState, MergedEvent, Migration, MigrationSource, MigrationSourceType, MigrationState, Milestone, MilestoneConnection, MilestoneEdge, MilestoneIssuesArgs, MilestoneItem, MilestoneOrder, MilestoneOrderField, MilestonePullRequestsArgs, MilestoneState, MilestonedEvent, Minimizable, MinimizeCommentInput, MinimizeCommentPayload, MoveProjectCardInput, MoveProjectCardPayload, MoveProjectColumnInput, MoveProjectColumnPayload, MovedColumnsInProjectEvent, Mutation, MutationAbortQueuedMigrationsArgs, MutationAbortRepositoryMigrationArgs, MutationAcceptEnterpriseAdministratorInvitationArgs, MutationAcceptTopicSuggestionArgs, MutationAddAssigneesToAssignableArgs, MutationAddCommentArgs, MutationAddDiscussionCommentArgs, MutationAddDiscussionPollVoteArgs, MutationAddEnterpriseOrganizationMemberArgs, MutationAddEnterpriseSupportEntitlementArgs, MutationAddLabelsToLabelableArgs, MutationAddProjectCardArgs, MutationAddProjectColumnArgs, MutationAddProjectV2DraftIssueArgs, MutationAddProjectV2ItemByIdArgs, MutationAddPullRequestReviewArgs, MutationAddPullRequestReviewCommentArgs, MutationAddPullRequestReviewThreadArgs, MutationAddPullRequestReviewThreadReplyArgs, MutationAddReactionArgs, MutationAddStarArgs, MutationAddUpvoteArgs, MutationAddVerifiableDomainArgs, MutationApproveDeploymentsArgs, MutationApproveVerifiableDomainArgs, MutationArchiveProjectV2ItemArgs, MutationArchiveRepositoryArgs, MutationCancelEnterpriseAdminInvitationArgs, MutationCancelSponsorshipArgs, MutationChangeUserStatusArgs, MutationClearLabelsFromLabelableArgs, MutationClearProjectV2ItemFieldValueArgs, MutationCloneProjectArgs, MutationCloneTemplateRepositoryArgs, MutationCloseDiscussionArgs, MutationCloseIssueArgs, MutationClosePullRequestArgs, MutationConvertProjectCardNoteToIssueArgs, MutationConvertPullRequestToDraftArgs, MutationCopyProjectV2Args, MutationCreateAttributionInvitationArgs, MutationCreateBranchProtectionRuleArgs, MutationCreateCheckRunArgs, MutationCreateCheckSuiteArgs, MutationCreateCommitOnBranchArgs, MutationCreateDiscussionArgs, MutationCreateEnterpriseOrganizationArgs, MutationCreateEnvironmentArgs, MutationCreateIpAllowListEntryArgs, MutationCreateIssueArgs, MutationCreateLinkedBranchArgs, MutationCreateMigrationSourceArgs, MutationCreateProjectArgs, MutationCreateProjectV2Args, MutationCreateProjectV2FieldArgs, MutationCreatePullRequestArgs, MutationCreateRefArgs, MutationCreateRepositoryArgs, MutationCreateRepositoryRulesetArgs, MutationCreateSponsorsListingArgs, MutationCreateSponsorsTierArgs, MutationCreateSponsorshipArgs, MutationCreateSponsorshipsArgs, MutationCreateTeamDiscussionArgs, MutationCreateTeamDiscussionCommentArgs, MutationCreateUserListArgs, MutationDeclineTopicSuggestionArgs, MutationDeleteBranchProtectionRuleArgs, MutationDeleteDeploymentArgs, MutationDeleteDiscussionArgs, MutationDeleteDiscussionCommentArgs, MutationDeleteEnvironmentArgs, MutationDeleteIpAllowListEntryArgs, MutationDeleteIssueArgs, MutationDeleteIssueCommentArgs, MutationDeleteLinkedBranchArgs, MutationDeleteProjectArgs, MutationDeleteProjectCardArgs, MutationDeleteProjectColumnArgs, MutationDeleteProjectV2Args, MutationDeleteProjectV2FieldArgs, MutationDeleteProjectV2ItemArgs, MutationDeleteProjectV2WorkflowArgs, MutationDeletePullRequestReviewArgs, MutationDeletePullRequestReviewCommentArgs, MutationDeleteRefArgs, MutationDeleteRepositoryRulesetArgs, MutationDeleteTeamDiscussionArgs, MutationDeleteTeamDiscussionCommentArgs, MutationDeleteUserListArgs, MutationDeleteVerifiableDomainArgs, MutationDequeuePullRequestArgs, MutationDisablePullRequestAutoMergeArgs, MutationDismissPullRequestReviewArgs, MutationDismissRepositoryVulnerabilityAlertArgs, MutationEnablePullRequestAutoMergeArgs, MutationEnqueuePullRequestArgs, MutationFollowOrganizationArgs, MutationFollowUserArgs, MutationGrantEnterpriseOrganizationsMigratorRoleArgs, MutationGrantMigratorRoleArgs, MutationInviteEnterpriseAdminArgs, MutationLinkProjectV2ToRepositoryArgs, MutationLinkProjectV2ToTeamArgs, MutationLinkRepositoryToProjectArgs, MutationLockLockableArgs, MutationMarkDiscussionCommentAsAnswerArgs, MutationMarkFileAsViewedArgs, MutationMarkProjectV2AsTemplateArgs, MutationMarkPullRequestReadyForReviewArgs, MutationMergeBranchArgs, MutationMergePullRequestArgs, MutationMinimizeCommentArgs, MutationMoveProjectCardArgs, MutationMoveProjectColumnArgs, MutationPinIssueArgs, MutationPublishSponsorsTierArgs, MutationRegenerateEnterpriseIdentityProviderRecoveryCodesArgs, MutationRegenerateVerifiableDomainTokenArgs, MutationRejectDeploymentsArgs, MutationRemoveAssigneesFromAssignableArgs, MutationRemoveEnterpriseAdminArgs, MutationRemoveEnterpriseIdentityProviderArgs, MutationRemoveEnterpriseMemberArgs, MutationRemoveEnterpriseOrganizationArgs, MutationRemoveEnterpriseSupportEntitlementArgs, MutationRemoveLabelsFromLabelableArgs, MutationRemoveOutsideCollaboratorArgs, MutationRemoveReactionArgs, MutationRemoveStarArgs, MutationRemoveUpvoteArgs, MutationReopenDiscussionArgs, MutationReopenIssueArgs, MutationReopenPullRequestArgs, MutationRequestReviewsArgs, MutationRerequestCheckSuiteArgs, MutationResolveReviewThreadArgs, MutationRetireSponsorsTierArgs, MutationRevertPullRequestArgs, MutationRevokeEnterpriseOrganizationsMigratorRoleArgs, MutationRevokeMigratorRoleArgs, MutationSetEnterpriseIdentityProviderArgs, MutationSetOrganizationInteractionLimitArgs, MutationSetRepositoryInteractionLimitArgs, MutationSetUserInteractionLimitArgs, MutationStartOrganizationMigrationArgs, MutationStartRepositoryMigrationArgs, MutationSubmitPullRequestReviewArgs, MutationTransferEnterpriseOrganizationArgs, MutationTransferIssueArgs, MutationUnarchiveProjectV2ItemArgs, MutationUnarchiveRepositoryArgs, MutationUnfollowOrganizationArgs, MutationUnfollowUserArgs, MutationUnlinkProjectV2FromRepositoryArgs, MutationUnlinkProjectV2FromTeamArgs, MutationUnlinkRepositoryFromProjectArgs, MutationUnlockLockableArgs, MutationUnmarkDiscussionCommentAsAnswerArgs, MutationUnmarkFileAsViewedArgs, MutationUnmarkIssueAsDuplicateArgs, MutationUnmarkProjectV2AsTemplateArgs, MutationUnminimizeCommentArgs, MutationUnpinIssueArgs, MutationUnresolveReviewThreadArgs, MutationUnsubscribeFromNotificationsArgs, MutationUpdateBranchProtectionRuleArgs, MutationUpdateCheckRunArgs, MutationUpdateCheckSuitePreferencesArgs, MutationUpdateDiscussionArgs, MutationUpdateDiscussionCommentArgs, MutationUpdateEnterpriseAdministratorRoleArgs, MutationUpdateEnterpriseAllowPrivateRepositoryForkingSettingArgs, MutationUpdateEnterpriseDefaultRepositoryPermissionSettingArgs, MutationUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingArgs, MutationUpdateEnterpriseMembersCanCreateRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteIssuesSettingArgs, MutationUpdateEnterpriseMembersCanDeleteRepositoriesSettingArgs, MutationUpdateEnterpriseMembersCanInviteCollaboratorsSettingArgs, MutationUpdateEnterpriseMembersCanMakePurchasesSettingArgs, MutationUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingArgs, MutationUpdateEnterpriseMembersCanViewDependencyInsightsSettingArgs, MutationUpdateEnterpriseOrganizationProjectsSettingArgs, MutationUpdateEnterpriseOwnerOrganizationRoleArgs, MutationUpdateEnterpriseProfileArgs, MutationUpdateEnterpriseRepositoryProjectsSettingArgs, MutationUpdateEnterpriseTeamDiscussionsSettingArgs, MutationUpdateEnterpriseTwoFactorAuthenticationRequiredSettingArgs, MutationUpdateEnvironmentArgs, MutationUpdateIpAllowListEnabledSettingArgs, MutationUpdateIpAllowListEntryArgs, MutationUpdateIpAllowListForInstalledAppsEnabledSettingArgs, MutationUpdateIssueArgs, MutationUpdateIssueCommentArgs, MutationUpdateNotificationRestrictionSettingArgs, MutationUpdateOrganizationAllowPrivateRepositoryForkingSettingArgs, MutationUpdateOrganizationWebCommitSignoffSettingArgs, MutationUpdatePatreonSponsorabilityArgs, MutationUpdateProjectArgs, MutationUpdateProjectCardArgs, MutationUpdateProjectColumnArgs, MutationUpdateProjectV2Args, MutationUpdateProjectV2CollaboratorsArgs, MutationUpdateProjectV2DraftIssueArgs, MutationUpdateProjectV2ItemFieldValueArgs, MutationUpdateProjectV2ItemPositionArgs, MutationUpdatePullRequestArgs, MutationUpdatePullRequestBranchArgs, MutationUpdatePullRequestReviewArgs, MutationUpdatePullRequestReviewCommentArgs, MutationUpdateRefArgs, MutationUpdateRepositoryArgs, MutationUpdateRepositoryRulesetArgs, MutationUpdateRepositoryWebCommitSignoffSettingArgs, MutationUpdateSponsorshipPreferencesArgs, MutationUpdateSubscriptionArgs, MutationUpdateTeamDiscussionArgs, MutationUpdateTeamDiscussionCommentArgs, 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, OrganizationMannequinsArgs, OrganizationMemberConnection, OrganizationMemberEdge, OrganizationMemberRole, OrganizationMemberStatusesArgs, OrganizationMembersCanCreateRepositoriesSettingValue, OrganizationMembersWithRoleArgs, OrganizationMigration, OrganizationMigrationState, OrganizationOrUser, OrganizationOrder, OrganizationOrderField, OrganizationPackagesArgs, OrganizationPendingMembersArgs, OrganizationPinnableItemsArgs, OrganizationPinnedItemsArgs, OrganizationProjectArgs, OrganizationProjectV2Args, OrganizationProjectsArgs, OrganizationProjectsV2Args, OrganizationRecentProjectsArgs, OrganizationRepositoriesArgs, OrganizationRepositoryArgs, OrganizationRepositoryDiscussionCommentsArgs, OrganizationRepositoryDiscussionsArgs, OrganizationRepositoryMigrationsArgs, OrganizationRulesetArgs, OrganizationRulesetsArgs, OrganizationSponsoringArgs, OrganizationSponsorsActivitiesArgs, OrganizationSponsorsArgs, OrganizationSponsorshipForViewerAsSponsorArgs, OrganizationSponsorshipForViewerAsSponsorableArgs, OrganizationSponsorshipNewslettersArgs, OrganizationSponsorshipsAsMaintainerArgs, OrganizationSponsorshipsAsSponsorArgs, OrganizationTeamArgs, OrganizationTeamsArgs, OrganizationTeamsHovercardContext, OrganizationTeamsHovercardContextRelevantTeamsArgs, OrganizationTotalSponsorshipAmountAsSponsorInCentsArgs, OrganizationsHovercardContext, OrganizationsHovercardContextRelevantOrganizationsArgs, Package, PackageConnection, PackageEdge, PackageFile, PackageFileConnection, PackageFileEdge, PackageFileOrder, PackageFileOrderField, PackageOrder, PackageOrderField, PackageOwner, PackageOwnerPackagesArgs, PackageStatistics, PackageTag, PackageType, PackageVersion, PackageVersionArgs, PackageVersionConnection, PackageVersionEdge, PackageVersionFilesArgs, PackageVersionOrder, PackageVersionOrderField, PackageVersionStatistics, PackageVersionsArgs, PageInfo, PatchStatus, PermissionGranter, PermissionSource, PinIssueInput, PinIssuePayload, PinnableItem, PinnableItemConnection, PinnableItemEdge, PinnableItemType, PinnedDiscussion, PinnedDiscussionConnection, PinnedDiscussionEdge, PinnedDiscussionGradient, PinnedDiscussionPattern, PinnedEvent, PinnedIssue, PinnedIssueConnection, PinnedIssueEdge, PrivateRepositoryForkingDisableAuditEntry, PrivateRepositoryForkingEnableAuditEntry, ProfileItemShowcase, ProfileItemShowcaseItemsArgs, ProfileOwner, ProfileOwnerAnyPinnableItemsArgs, ProfileOwnerPinnableItemsArgs, ProfileOwnerPinnedItemsArgs, Project, ProjectCard, ProjectCardArchivedState, ProjectCardConnection, ProjectCardEdge, ProjectCardItem, ProjectCardState, ProjectColumn, ProjectColumnCardsArgs, ProjectColumnConnection, ProjectColumnEdge, ProjectColumnPurpose, ProjectColumnsArgs, ProjectConnection, ProjectEdge, ProjectOrder, ProjectOrderField, ProjectOwner, ProjectOwnerProjectArgs, ProjectOwnerProjectsArgs, ProjectPendingCardsArgs, ProjectProgress, ProjectState, ProjectTemplate, ProjectV2, ProjectV2Actor, ProjectV2ActorConnection, ProjectV2ActorEdge, ProjectV2Collaborator, ProjectV2Connection, ProjectV2CustomFieldType, ProjectV2Edge, ProjectV2Field, ProjectV2FieldArgs, ProjectV2FieldCommon, ProjectV2FieldConfiguration, ProjectV2FieldConfigurationConnection, ProjectV2FieldConfigurationEdge, ProjectV2FieldConnection, ProjectV2FieldEdge, ProjectV2FieldOrder, ProjectV2FieldOrderField, ProjectV2FieldType, ProjectV2FieldValue, ProjectV2FieldsArgs, ProjectV2Filters, ProjectV2Item, ProjectV2ItemConnection, ProjectV2ItemContent, ProjectV2ItemEdge, ProjectV2ItemFieldDateValue, ProjectV2ItemFieldIterationValue, ProjectV2ItemFieldLabelValue, ProjectV2ItemFieldLabelValueLabelsArgs, ProjectV2ItemFieldMilestoneValue, ProjectV2ItemFieldNumberValue, ProjectV2ItemFieldPullRequestValue, ProjectV2ItemFieldPullRequestValuePullRequestsArgs, ProjectV2ItemFieldRepositoryValue, ProjectV2ItemFieldReviewerValue, ProjectV2ItemFieldReviewerValueReviewersArgs, ProjectV2ItemFieldSingleSelectValue, ProjectV2ItemFieldTextValue, ProjectV2ItemFieldUserValue, ProjectV2ItemFieldUserValueUsersArgs, ProjectV2ItemFieldValue, ProjectV2ItemFieldValueByNameArgs, ProjectV2ItemFieldValueCommon, ProjectV2ItemFieldValueConnection, ProjectV2ItemFieldValueEdge, ProjectV2ItemFieldValueOrder, ProjectV2ItemFieldValueOrderField, ProjectV2ItemFieldValuesArgs, ProjectV2ItemOrder, ProjectV2ItemOrderField, ProjectV2ItemType, ProjectV2ItemsArgs, ProjectV2IterationField, ProjectV2IterationFieldConfiguration, ProjectV2IterationFieldIteration, ProjectV2Order, ProjectV2OrderField, ProjectV2Owner, ProjectV2OwnerProjectV2Args, ProjectV2OwnerProjectsV2Args, ProjectV2Recent, ProjectV2RecentRecentProjectsArgs, ProjectV2RepositoriesArgs, ProjectV2Roles, ProjectV2SingleSelectField, ProjectV2SingleSelectFieldOption, ProjectV2SingleSelectFieldOptionColor, ProjectV2SingleSelectFieldOptionInput, ProjectV2SingleSelectFieldOptionsArgs, ProjectV2SortBy, ProjectV2SortByConnection, ProjectV2SortByEdge, ProjectV2SortByField, ProjectV2SortByFieldConnection, ProjectV2SortByFieldEdge, ProjectV2State, ProjectV2TeamsArgs, ProjectV2View, ProjectV2ViewArgs, ProjectV2ViewConnection, ProjectV2ViewEdge, ProjectV2ViewFieldsArgs, ProjectV2ViewGroupByArgs, ProjectV2ViewGroupByFieldsArgs, ProjectV2ViewLayout, ProjectV2ViewOrder, ProjectV2ViewOrderField, ProjectV2ViewSortByArgs, ProjectV2ViewSortByFieldsArgs, ProjectV2ViewVerticalGroupByArgs, ProjectV2ViewVerticalGroupByFieldsArgs, ProjectV2ViewVisibleFieldsArgs, ProjectV2ViewsArgs, ProjectV2Workflow, ProjectV2WorkflowArgs, ProjectV2WorkflowConnection, ProjectV2WorkflowEdge, ProjectV2WorkflowOrder, ProjectV2WorkflowsArgs, ProjectV2WorkflowsOrderField, PublicKey, PublicKeyConnection, PublicKeyEdge, PublishSponsorsTierInput, PublishSponsorsTierPayload, PullRequest, PullRequestAssigneesArgs, PullRequestBranchUpdateMethod, PullRequestChangedFile, PullRequestChangedFileConnection, PullRequestChangedFileEdge, PullRequestClosingIssuesReferencesArgs, PullRequestCommentsArgs, PullRequestCommit, PullRequestCommitCommentThread, PullRequestCommitCommentThreadCommentsArgs, PullRequestCommitConnection, PullRequestCommitEdge, PullRequestCommitsArgs, PullRequestConnection, PullRequestContributionsByRepository, PullRequestContributionsByRepositoryContributionsArgs, PullRequestEdge, PullRequestFilesArgs, PullRequestHovercardArgs, PullRequestLabelsArgs, PullRequestLatestOpinionatedReviewsArgs, PullRequestLatestReviewsArgs, PullRequestMergeMethod, PullRequestOrder, PullRequestOrderField, PullRequestParameters, PullRequestParametersInput, PullRequestParticipantsArgs, PullRequestProjectCardsArgs, PullRequestProjectItemsArgs, PullRequestProjectV2Args, PullRequestProjectsV2Args, PullRequestReactionsArgs, PullRequestReview, PullRequestReviewComment, PullRequestReviewCommentConnection, PullRequestReviewCommentEdge, PullRequestReviewCommentReactionsArgs, PullRequestReviewCommentState, PullRequestReviewCommentUserContentEditsArgs, PullRequestReviewCommentsArgs, PullRequestReviewConnection, PullRequestReviewContributionsByRepository, PullRequestReviewContributionsByRepositoryContributionsArgs, PullRequestReviewDecision, PullRequestReviewEdge, PullRequestReviewEvent, PullRequestReviewOnBehalfOfArgs, PullRequestReviewReactionsArgs, PullRequestReviewRequestsArgs, PullRequestReviewState, PullRequestReviewThread, PullRequestReviewThreadCommentsArgs, PullRequestReviewThreadConnection, PullRequestReviewThreadEdge, PullRequestReviewThreadSubjectType, PullRequestReviewThreadsArgs, PullRequestReviewUserContentEditsArgs, PullRequestReviewsArgs, PullRequestRevisionMarker, PullRequestState, PullRequestTemplate, PullRequestThread, PullRequestThreadCommentsArgs, PullRequestTimelineArgs, PullRequestTimelineConnection, PullRequestTimelineItem, PullRequestTimelineItemEdge, PullRequestTimelineItems, PullRequestTimelineItemsArgs, PullRequestTimelineItemsConnection, PullRequestTimelineItemsEdge, PullRequestTimelineItemsItemType, PullRequestUpdateState, PullRequestUserContentEditsArgs, PullRequestViewerMergeBodyTextArgs, PullRequestViewerMergeHeadlineTextArgs, Push, PushAllowance, PushAllowanceActor, PushAllowanceConnection, PushAllowanceEdge, Query, QueryCodeOfConductArgs, QueryEnterpriseAdministratorInvitationArgs, QueryEnterpriseAdministratorInvitationByTokenArgs, QueryEnterpriseArgs, QueryLicenseArgs, QueryMarketplaceCategoriesArgs, QueryMarketplaceCategoryArgs, QueryMarketplaceListingArgs, QueryMarketplaceListingsArgs, QueryNodeArgs, QueryNodesArgs, QueryOrganizationArgs, QueryRateLimitArgs, QueryRepositoryArgs, QueryRepositoryOwnerArgs, QueryResourceArgs, QuerySearchArgs, QuerySecurityAdvisoriesArgs, QuerySecurityAdvisoryArgs, QuerySecurityVulnerabilitiesArgs, QuerySponsorablesArgs, QueryTopicArgs, QueryUserArgs, RateLimit, Reactable, ReactableReactionsArgs, ReactingUserConnection, ReactingUserEdge, Reaction, ReactionConnection, ReactionContent, ReactionEdge, ReactionGroup, ReactionGroupReactorsArgs, ReactionGroupUsersArgs, ReactionOrder, ReactionOrderField, Reactor, ReactorConnection, ReactorEdge, ReadyForReviewEvent, Ref, RefAssociatedPullRequestsArgs, RefCompareArgs, RefConnection, RefEdge, RefNameConditionTarget, RefNameConditionTargetInput, RefOrder, RefOrderField, RefRulesArgs, RefUpdateRule, ReferencedEvent, ReferencedSubject, RegenerateEnterpriseIdentityProviderRecoveryCodesInput, RegenerateEnterpriseIdentityProviderRecoveryCodesPayload, RegenerateVerifiableDomainTokenInput, RegenerateVerifiableDomainTokenPayload, RejectDeploymentsInput, RejectDeploymentsPayload, Release, ReleaseAsset, ReleaseAssetConnection, ReleaseAssetEdge, ReleaseConnection, ReleaseEdge, ReleaseMentionsArgs, ReleaseOrder, ReleaseOrderField, ReleaseReactionsArgs, ReleaseReleaseAssetsArgs, ReleaseShortDescriptionHtmlArgs, RemoveAssigneesFromAssignableInput, RemoveAssigneesFromAssignablePayload, RemoveEnterpriseAdminInput, RemoveEnterpriseAdminPayload, RemoveEnterpriseIdentityProviderInput, RemoveEnterpriseIdentityProviderPayload, RemoveEnterpriseMemberInput, RemoveEnterpriseMemberPayload, RemoveEnterpriseOrganizationInput, RemoveEnterpriseOrganizationPayload, RemoveEnterpriseSupportEntitlementInput, RemoveEnterpriseSupportEntitlementPayload, RemoveLabelsFromLabelableInput, RemoveLabelsFromLabelablePayload, RemoveOutsideCollaboratorInput, RemoveOutsideCollaboratorPayload, RemoveReactionInput, RemoveReactionPayload, RemoveStarInput, RemoveStarPayload, RemoveUpvoteInput, RemoveUpvotePayload, RemovedFromMergeQueueEvent, RemovedFromProjectEvent, RenamedTitleEvent, RenamedTitleSubject, ReopenDiscussionInput, ReopenDiscussionPayload, ReopenIssueInput, ReopenIssuePayload, ReopenPullRequestInput, ReopenPullRequestPayload, ReopenedEvent, RepoAccessAuditEntry, RepoAccessAuditEntryVisibility, RepoAddMemberAuditEntry, RepoAddMemberAuditEntryVisibility, RepoAddTopicAuditEntry, RepoArchivedAuditEntry, RepoArchivedAuditEntryVisibility, RepoChangeMergeSettingAuditEntry, RepoChangeMergeSettingAuditEntryMergeType, RepoConfigDisableAnonymousGitAccessAuditEntry, RepoConfigDisableCollaboratorsOnlyAuditEntry, RepoConfigDisableContributorsOnlyAuditEntry, RepoConfigDisableSockpuppetDisallowedAuditEntry, RepoConfigEnableAnonymousGitAccessAuditEntry, RepoConfigEnableCollaboratorsOnlyAuditEntry, RepoConfigEnableContributorsOnlyAuditEntry, RepoConfigEnableSockpuppetDisallowedAuditEntry, RepoConfigLockAnonymousGitAccessAuditEntry, RepoConfigUnlockAnonymousGitAccessAuditEntry, RepoCreateAuditEntry, RepoCreateAuditEntryVisibility, RepoDestroyAuditEntry, RepoDestroyAuditEntryVisibility, RepoRemoveMemberAuditEntry, RepoRemoveMemberAuditEntryVisibility, RepoRemoveTopicAuditEntry, ReportedContentClassifiers, Repository, RepositoryAffiliation, RepositoryAssignableUsersArgs, RepositoryAuditEntryData, RepositoryBranchProtectionRulesArgs, RepositoryCodeowners, RepositoryCodeownersArgs, RepositoryCodeownersError, RepositoryCollaboratorConnection, RepositoryCollaboratorEdge, RepositoryCollaboratorsArgs, RepositoryCommitCommentsArgs, RepositoryConnection, RepositoryContactLink, RepositoryContributionType, RepositoryDeployKeysArgs, RepositoryDeploymentsArgs, RepositoryDiscussionArgs, RepositoryDiscussionAuthor, RepositoryDiscussionAuthorRepositoryDiscussionsArgs, RepositoryDiscussionCategoriesArgs, RepositoryDiscussionCategoryArgs, RepositoryDiscussionCommentAuthor, RepositoryDiscussionCommentAuthorRepositoryDiscussionCommentsArgs, RepositoryDiscussionsArgs, RepositoryEdge, RepositoryEnvironmentArgs, RepositoryEnvironmentsArgs, RepositoryForksArgs, RepositoryIdConditionTarget, RepositoryIdConditionTargetInput, RepositoryInfo, RepositoryInfoShortDescriptionHtmlArgs, RepositoryInteractionAbility, RepositoryInteractionLimit, RepositoryInteractionLimitExpiry, RepositoryInteractionLimitOrigin, RepositoryInvitation, RepositoryInvitationConnection, RepositoryInvitationEdge, RepositoryInvitationOrder, RepositoryInvitationOrderField, RepositoryIssueArgs, RepositoryIssueOrPullRequestArgs, RepositoryIssuesArgs, RepositoryLabelArgs, RepositoryLabelsArgs, RepositoryLanguagesArgs, RepositoryLockReason, RepositoryMentionableUsersArgs, RepositoryMergeQueueArgs, RepositoryMigration, RepositoryMigrationConnection, RepositoryMigrationEdge, RepositoryMigrationOrder, RepositoryMigrationOrderDirection, RepositoryMigrationOrderField, RepositoryMilestoneArgs, RepositoryMilestonesArgs, RepositoryNameConditionTarget, RepositoryNameConditionTargetInput, RepositoryNode, RepositoryObjectArgs, RepositoryOrder, RepositoryOrderField, RepositoryOwner, RepositoryOwnerAvatarUrlArgs, RepositoryOwnerRepositoriesArgs, RepositoryOwnerRepositoryArgs, RepositoryPackagesArgs, RepositoryPermission, RepositoryPinnedDiscussionsArgs, RepositoryPinnedIssuesArgs, RepositoryPrivacy, RepositoryProjectArgs, RepositoryProjectV2Args, RepositoryProjectsArgs, RepositoryProjectsV2Args, RepositoryPullRequestArgs, RepositoryPullRequestsArgs, RepositoryRecentProjectsArgs, RepositoryRefArgs, RepositoryRefsArgs, RepositoryReleaseArgs, RepositoryReleasesArgs, RepositoryRepositoryTopicsArgs, RepositoryRule, RepositoryRuleConditions, RepositoryRuleConditionsInput, RepositoryRuleConnection, RepositoryRuleEdge, RepositoryRuleInput, RepositoryRuleOrder, RepositoryRuleOrderField, RepositoryRuleType, RepositoryRuleset, RepositoryRulesetArgs, RepositoryRulesetBypassActor, RepositoryRulesetBypassActorBypassMode, RepositoryRulesetBypassActorConnection, RepositoryRulesetBypassActorEdge, RepositoryRulesetBypassActorInput, RepositoryRulesetBypassActorsArgs, RepositoryRulesetConnection, RepositoryRulesetEdge, RepositoryRulesetRulesArgs, RepositoryRulesetTarget, RepositoryRulesetsArgs, RepositoryShortDescriptionHtmlArgs, RepositoryStargazersArgs, RepositorySubmodulesArgs, RepositoryTopic, RepositoryTopicConnection, RepositoryTopicEdge, RepositoryVisibility, RepositoryVisibilityChangeDisableAuditEntry, RepositoryVisibilityChangeEnableAuditEntry, RepositoryVulnerabilityAlert, RepositoryVulnerabilityAlertArgs, RepositoryVulnerabilityAlertConnection, RepositoryVulnerabilityAlertDependencyScope, RepositoryVulnerabilityAlertEdge, RepositoryVulnerabilityAlertState, RepositoryVulnerabilityAlertsArgs, RepositoryWatchersArgs, RequestReviewsInput, RequestReviewsPayload, RequestableCheckStatusState, RequestedReviewer, RequestedReviewerConnection, RequestedReviewerEdge, RequirableByPullRequest, RequirableByPullRequestIsRequiredArgs, RequiredDeploymentsParameters, RequiredDeploymentsParametersInput, RequiredStatusCheckDescription, RequiredStatusCheckInput, RequiredStatusChecksParameters, RequiredStatusChecksParametersInput, RerequestCheckSuiteInput, RerequestCheckSuitePayload, ResolveReviewThreadInput, ResolveReviewThreadPayload, RestrictedContribution, RetireSponsorsTierInput, RetireSponsorsTierPayload, RevertPullRequestInput, RevertPullRequestPayload, ReviewDismissalAllowance, ReviewDismissalAllowanceActor, ReviewDismissalAllowanceConnection, ReviewDismissalAllowanceEdge, ReviewDismissedEvent, ReviewRequest, ReviewRequestConnection, ReviewRequestEdge, ReviewRequestRemovedEvent, ReviewRequestedEvent, ReviewStatusHovercardContext, RevokeEnterpriseOrganizationsMigratorRoleInput, RevokeEnterpriseOrganizationsMigratorRolePayload, RevokeEnterpriseOrganizationsMigratorRolePayloadOrganizationsArgs, RevokeMigratorRoleInput, RevokeMigratorRolePayload, RoleInOrganization, RuleEnforcement, RuleParameters, RuleParametersInput, RuleSource, SamlDigestAlgorithm, SamlSignatureAlgorithm, SavedReply, SavedReplyConnection, SavedReplyEdge, SavedReplyOrder, SavedReplyOrderField, Scalars, SearchResultItem, SearchResultItemConnection, SearchResultItemEdge, SearchType, SecurityAdvisory, SecurityAdvisoryClassification, SecurityAdvisoryConnection, SecurityAdvisoryCwesArgs, SecurityAdvisoryEcosystem, SecurityAdvisoryEdge, SecurityAdvisoryIdentifier, SecurityAdvisoryIdentifierFilter, SecurityAdvisoryIdentifierType, SecurityAdvisoryOrder, SecurityAdvisoryOrderField, SecurityAdvisoryPackage, SecurityAdvisoryPackageVersion, SecurityAdvisoryReference, SecurityAdvisorySeverity, SecurityAdvisoryVulnerabilitiesArgs, SecurityVulnerability, SecurityVulnerabilityConnection, SecurityVulnerabilityEdge, SecurityVulnerabilityOrder, SecurityVulnerabilityOrderField, SetEnterpriseIdentityProviderInput, SetEnterpriseIdentityProviderPayload, SetOrganizationInteractionLimitInput, SetOrganizationInteractionLimitPayload, SetRepositoryInteractionLimitInput, SetRepositoryInteractionLimitPayload, SetUserInteractionLimitInput, SetUserInteractionLimitPayload, SmimeSignature, SocialAccount, SocialAccountConnection, SocialAccountEdge, SocialAccountProvider, Sponsor, SponsorConnection, SponsorEdge, SponsorOrder, SponsorOrderField, Sponsorable, SponsorableIsSponsoredByArgs, SponsorableItem, SponsorableItemConnection, SponsorableItemEdge, SponsorableOrder, SponsorableOrderField, SponsorableSponsoringArgs, SponsorableSponsorsActivitiesArgs, SponsorableSponsorsArgs, SponsorableSponsorshipForViewerAsSponsorArgs, SponsorableSponsorshipForViewerAsSponsorableArgs, SponsorableSponsorshipNewslettersArgs, SponsorableSponsorshipsAsMaintainerArgs, SponsorableSponsorshipsAsSponsorArgs, SponsorableTotalSponsorshipAmountAsSponsorInCentsArgs, SponsorsActivity, SponsorsActivityAction, SponsorsActivityConnection, SponsorsActivityEdge, SponsorsActivityOrder, SponsorsActivityOrderField, SponsorsActivityPeriod, SponsorsCountryOrRegionCode, SponsorsGoal, SponsorsGoalKind, SponsorsListing, SponsorsListingFeatureableItem, SponsorsListingFeaturedItem, SponsorsListingFeaturedItemFeatureableType, SponsorsListingFeaturedItemsArgs, SponsorsListingTiersArgs, SponsorsTier, SponsorsTierAdminInfo, SponsorsTierAdminInfoSponsorshipsArgs, SponsorsTierConnection, SponsorsTierEdge, SponsorsTierOrder, SponsorsTierOrderField, Sponsorship, SponsorshipConnection, SponsorshipEdge, SponsorshipNewsletter, SponsorshipNewsletterConnection, SponsorshipNewsletterEdge, SponsorshipNewsletterOrder, SponsorshipNewsletterOrderField, SponsorshipOrder, SponsorshipOrderField, SponsorshipPaymentSource, SponsorshipPrivacy, SquashMergeCommitMessage, SquashMergeCommitTitle, SshSignature, StarOrder, StarOrderField, StargazerConnection, StargazerEdge, Starrable, StarrableStargazersArgs, StarredRepositoryConnection, StarredRepositoryEdge, StartOrganizationMigrationInput, StartOrganizationMigrationPayload, StartRepositoryMigrationInput, StartRepositoryMigrationPayload, Status, StatusCheckConfiguration, StatusCheckConfigurationInput, StatusCheckRollup, StatusCheckRollupContext, StatusCheckRollupContextConnection, StatusCheckRollupContextEdge, StatusCheckRollupContextsArgs, StatusCombinedContextsArgs, StatusContext, StatusContextArgs, StatusContextAvatarUrlArgs, StatusContextIsRequiredArgs, StatusContextStateCount, StatusState, StripeConnectAccount, SubmitPullRequestReviewInput, SubmitPullRequestReviewPayload, Submodule, SubmoduleConnection, SubmoduleEdge, Subscribable, SubscribableThread, SubscribedEvent, SubscriptionState, SuggestedReviewer, Tag, TagNamePatternParameters, TagNamePatternParametersInput, Team, TeamAddMemberAuditEntry, TeamAddRepositoryAuditEntry, TeamAncestorsArgs, TeamAuditEntryData, TeamAvatarUrlArgs, TeamChangeParentTeamAuditEntry, TeamChildTeamsArgs, TeamConnection, TeamDiscussion, TeamDiscussionArgs, TeamDiscussionComment, TeamDiscussionCommentConnection, TeamDiscussionCommentEdge, TeamDiscussionCommentOrder, TeamDiscussionCommentOrderField, TeamDiscussionCommentReactionsArgs, TeamDiscussionCommentUserContentEditsArgs, TeamDiscussionCommentsArgs, TeamDiscussionConnection, TeamDiscussionEdge, TeamDiscussionOrder, TeamDiscussionOrderField, TeamDiscussionReactionsArgs, TeamDiscussionUserContentEditsArgs, TeamDiscussionsArgs, TeamEdge, TeamInvitationsArgs, TeamMemberConnection, TeamMemberEdge, TeamMemberOrder, TeamMemberOrderField, TeamMemberRole, TeamMemberStatusesArgs, TeamMembersArgs, TeamMembershipType, TeamNotificationSetting, TeamOrder, TeamOrderField, TeamPrivacy, TeamProjectV2Args, TeamProjectsV2Args, TeamRemoveMemberAuditEntry, TeamRemoveRepositoryAuditEntry, TeamRepositoriesArgs, TeamRepositoryConnection, TeamRepositoryEdge, TeamRepositoryOrder, TeamRepositoryOrderField, TeamRole, TextMatch, TextMatchHighlight, ThreadSubscriptionFormAction, ThreadSubscriptionState, Topic, TopicAuditEntryData, TopicRelatedTopicsArgs, TopicRepositoriesArgs, TopicStargazersArgs, TopicSuggestionDeclineReason, TrackedIssueStates, TransferEnterpriseOrganizationInput, TransferEnterpriseOrganizationPayload, TransferIssueInput, TransferIssuePayload, TransferredEvent, Tree, TreeEntry, UnarchiveProjectV2ItemInput, UnarchiveProjectV2ItemPayload, UnarchiveRepositoryInput, UnarchiveRepositoryPayload, UnassignedEvent, UnfollowOrganizationInput, UnfollowOrganizationPayload, UnfollowUserInput, UnfollowUserPayload, UniformResourceLocatable, UnknownSignature, UnlabeledEvent, UnlinkProjectV2FromRepositoryInput, UnlinkProjectV2FromRepositoryPayload, UnlinkProjectV2FromTeamInput, UnlinkProjectV2FromTeamPayload, UnlinkRepositoryFromProjectInput, UnlinkRepositoryFromProjectPayload, UnlockLockableInput, UnlockLockablePayload, UnlockedEvent, UnmarkDiscussionCommentAsAnswerInput, UnmarkDiscussionCommentAsAnswerPayload, UnmarkFileAsViewedInput, UnmarkFileAsViewedPayload, UnmarkIssueAsDuplicateInput, UnmarkIssueAsDuplicatePayload, UnmarkProjectV2AsTemplateInput, UnmarkProjectV2AsTemplatePayload, UnmarkedAsDuplicateEvent, UnminimizeCommentInput, UnminimizeCommentPayload, UnpinIssueInput, UnpinIssuePayload, UnpinnedEvent, UnresolveReviewThreadInput, UnresolveReviewThreadPayload, UnsubscribeFromNotificationsInput, UnsubscribeFromNotificationsPayload, UnsubscribedEvent, Updatable, UpdatableComment, UpdateBranchProtectionRuleInput, UpdateBranchProtectionRulePayload, UpdateCheckRunInput, UpdateCheckRunPayload, UpdateCheckSuitePreferencesInput, UpdateCheckSuitePreferencesPayload, UpdateDiscussionCommentInput, UpdateDiscussionCommentPayload, UpdateDiscussionInput, UpdateDiscussionPayload, UpdateEnterpriseAdministratorRoleInput, UpdateEnterpriseAdministratorRolePayload, UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput, UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload, UpdateEnterpriseDefaultRepositoryPermissionSettingInput, UpdateEnterpriseDefaultRepositoryPermissionSettingPayload, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput, UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload, UpdateEnterpriseMembersCanCreateRepositoriesSettingInput, UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload, UpdateEnterpriseMembersCanDeleteIssuesSettingInput, UpdateEnterpriseMembersCanDeleteIssuesSettingPayload, UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput, UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload, UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput, UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload, UpdateEnterpriseMembersCanMakePurchasesSettingInput, UpdateEnterpriseMembersCanMakePurchasesSettingPayload, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput, UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload, UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput, UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload, UpdateEnterpriseOrganizationProjectsSettingInput, UpdateEnterpriseOrganizationProjectsSettingPayload, UpdateEnterpriseOwnerOrganizationRoleInput, UpdateEnterpriseOwnerOrganizationRolePayload, UpdateEnterpriseProfileInput, UpdateEnterpriseProfilePayload, UpdateEnterpriseRepositoryProjectsSettingInput, UpdateEnterpriseRepositoryProjectsSettingPayload, UpdateEnterpriseTeamDiscussionsSettingInput, UpdateEnterpriseTeamDiscussionsSettingPayload, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput, UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload, UpdateEnvironmentInput, UpdateEnvironmentPayload, UpdateIpAllowListEnabledSettingInput, UpdateIpAllowListEnabledSettingPayload, UpdateIpAllowListEntryInput, UpdateIpAllowListEntryPayload, UpdateIpAllowListForInstalledAppsEnabledSettingInput, UpdateIpAllowListForInstalledAppsEnabledSettingPayload, UpdateIssueCommentInput, UpdateIssueCommentPayload, UpdateIssueInput, UpdateIssuePayload, UpdateNotificationRestrictionSettingInput, UpdateNotificationRestrictionSettingPayload, UpdateOrganizationAllowPrivateRepositoryForkingSettingInput, UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload, UpdateOrganizationWebCommitSignoffSettingInput, UpdateOrganizationWebCommitSignoffSettingPayload, UpdateParameters, UpdateParametersInput, UpdatePatreonSponsorabilityInput, UpdatePatreonSponsorabilityPayload, UpdateProjectCardInput, UpdateProjectCardPayload, UpdateProjectColumnInput, UpdateProjectColumnPayload, UpdateProjectInput, UpdateProjectPayload, UpdateProjectV2CollaboratorsInput, UpdateProjectV2CollaboratorsPayload, UpdateProjectV2CollaboratorsPayloadCollaboratorsArgs, UpdateProjectV2DraftIssueInput, UpdateProjectV2DraftIssuePayload, UpdateProjectV2Input, UpdateProjectV2ItemFieldValueInput, UpdateProjectV2ItemFieldValuePayload, UpdateProjectV2ItemPositionInput, UpdateProjectV2ItemPositionPayload, UpdateProjectV2ItemPositionPayloadItemsArgs, UpdateProjectV2Payload, UpdatePullRequestBranchInput, UpdatePullRequestBranchPayload, UpdatePullRequestInput, UpdatePullRequestPayload, UpdatePullRequestReviewCommentInput, UpdatePullRequestReviewCommentPayload, UpdatePullRequestReviewInput, UpdatePullRequestReviewPayload, UpdateRefInput, UpdateRefPayload, UpdateRepositoryInput, UpdateRepositoryPayload, UpdateRepositoryRulesetInput, UpdateRepositoryRulesetPayload, UpdateRepositoryWebCommitSignoffSettingInput, UpdateRepositoryWebCommitSignoffSettingPayload, UpdateSponsorshipPreferencesInput, UpdateSponsorshipPreferencesPayload, UpdateSubscriptionInput, UpdateSubscriptionPayload, UpdateTeamDiscussionCommentInput, UpdateTeamDiscussionCommentPayload, UpdateTeamDiscussionInput, UpdateTeamDiscussionPayload, 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, UserList, UserListConnection, UserListEdge, UserListItems, UserListItemsArgs, UserListItemsConnection, UserListItemsEdge, UserListSuggestion, UserListsArgs, UserOrganizationArgs, UserOrganizationVerifiedDomainEmailsArgs, UserOrganizationsArgs, UserPackagesArgs, UserPinnableItemsArgs, UserPinnedItemsArgs, UserProjectArgs, UserProjectV2Args, UserProjectsArgs, UserProjectsV2Args, UserPublicKeysArgs, UserPullRequestsArgs, UserRecentProjectsArgs, UserRepositoriesArgs, UserRepositoriesContributedToArgs, UserRepositoryArgs, UserRepositoryDiscussionCommentsArgs, UserRepositoryDiscussionsArgs, UserSavedRepliesArgs, UserSocialAccountsArgs, UserSponsoringArgs, UserSponsorsActivitiesArgs, UserSponsorsArgs, UserSponsorshipForViewerAsSponsorArgs, UserSponsorshipForViewerAsSponsorableArgs, UserSponsorshipNewslettersArgs, UserSponsorshipsAsMaintainerArgs, UserSponsorshipsAsSponsorArgs, UserStarredRepositoriesArgs, UserStatus, UserStatusConnection, UserStatusEdge, UserStatusOrder, UserStatusOrderField, UserTopRepositoriesArgs, UserTotalSponsorshipAmountAsSponsorInCentsArgs, UserWatchingArgs, VerifiableDomain, VerifiableDomainConnection, VerifiableDomainEdge, VerifiableDomainOrder, VerifiableDomainOrderField, VerifiableDomainOwner, VerifyVerifiableDomainInput, VerifyVerifiableDomainPayload, ViewerHovercardContext, Votable, Workflow, WorkflowFileReference, WorkflowFileReferenceInput, WorkflowRun, WorkflowRunConnection, WorkflowRunDeploymentReviewsArgs, WorkflowRunEdge, WorkflowRunFile, WorkflowRunOrder, WorkflowRunOrderField, WorkflowRunPendingDeploymentRequestsArgs, WorkflowRunsArgs, WorkflowState, WorkflowsParameters, WorkflowsParametersInput };