github-schema 1.2.3 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/github-schema.d.cts +282 -2
- package/dist/github-schema.d.ts +282 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +1036 -1
- package/package.json +1 -1
package/dist/github-schema.d.ts
CHANGED
|
@@ -643,6 +643,7 @@ type AddedToMergeQueueEvent = Node & {
|
|
|
643
643
|
createdAt: Scalars['DateTime']['output'];
|
|
644
644
|
/** The user who added this Pull Request to the merge queue */
|
|
645
645
|
enqueuer?: Maybe<User>;
|
|
646
|
+
/** The Node ID of this object */
|
|
646
647
|
id: Scalars['ID']['output'];
|
|
647
648
|
/** The merge queue where this pull request was added to. */
|
|
648
649
|
mergeQueue?: Maybe<MergeQueue>;
|
|
@@ -658,6 +659,7 @@ type AddedToProjectEvent = Node & {
|
|
|
658
659
|
createdAt: Scalars['DateTime']['output'];
|
|
659
660
|
/** Identifies the primary key from the database. */
|
|
660
661
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
662
|
+
/** The Node ID of this object */
|
|
661
663
|
id: Scalars['ID']['output'];
|
|
662
664
|
};
|
|
663
665
|
/** Represents an announcement banner. */
|
|
@@ -678,6 +680,7 @@ type App = Node & {
|
|
|
678
680
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
679
681
|
/** The description of the app. */
|
|
680
682
|
description?: Maybe<Scalars['String']['output']>;
|
|
683
|
+
/** The Node ID of this object */
|
|
681
684
|
id: Scalars['ID']['output'];
|
|
682
685
|
/** The IP addresses of the app. */
|
|
683
686
|
ipAllowListEntries: IpAllowListEntryConnection;
|
|
@@ -795,6 +798,7 @@ type AssignedEvent = Node & {
|
|
|
795
798
|
assignee?: Maybe<Assignee>;
|
|
796
799
|
/** Identifies the date and time when the object was created. */
|
|
797
800
|
createdAt: Scalars['DateTime']['output'];
|
|
801
|
+
/** The Node ID of this object */
|
|
798
802
|
id: Scalars['ID']['output'];
|
|
799
803
|
/**
|
|
800
804
|
* Identifies the user who was assigned.
|
|
@@ -855,6 +859,7 @@ type AutoMergeDisabledEvent = Node & {
|
|
|
855
859
|
createdAt: Scalars['DateTime']['output'];
|
|
856
860
|
/** The user who disabled auto-merge for this Pull Request */
|
|
857
861
|
disabler?: Maybe<User>;
|
|
862
|
+
/** The Node ID of this object */
|
|
858
863
|
id: Scalars['ID']['output'];
|
|
859
864
|
/** PullRequest referenced by event */
|
|
860
865
|
pullRequest?: Maybe<PullRequest>;
|
|
@@ -872,6 +877,7 @@ type AutoMergeEnabledEvent = Node & {
|
|
|
872
877
|
createdAt: Scalars['DateTime']['output'];
|
|
873
878
|
/** The user who enabled auto-merge for this Pull Request */
|
|
874
879
|
enabler?: Maybe<User>;
|
|
880
|
+
/** The Node ID of this object */
|
|
875
881
|
id: Scalars['ID']['output'];
|
|
876
882
|
/** PullRequest referenced by event. */
|
|
877
883
|
pullRequest?: Maybe<PullRequest>;
|
|
@@ -912,6 +918,7 @@ type AutoRebaseEnabledEvent = Node & {
|
|
|
912
918
|
createdAt: Scalars['DateTime']['output'];
|
|
913
919
|
/** The user who enabled auto-merge (rebase) for this Pull Request */
|
|
914
920
|
enabler?: Maybe<User>;
|
|
921
|
+
/** The Node ID of this object */
|
|
915
922
|
id: Scalars['ID']['output'];
|
|
916
923
|
/** PullRequest referenced by event. */
|
|
917
924
|
pullRequest?: Maybe<PullRequest>;
|
|
@@ -925,6 +932,7 @@ type AutoSquashEnabledEvent = Node & {
|
|
|
925
932
|
createdAt: Scalars['DateTime']['output'];
|
|
926
933
|
/** The user who enabled auto-merge (squash) for this Pull Request */
|
|
927
934
|
enabler?: Maybe<User>;
|
|
935
|
+
/** The Node ID of this object */
|
|
928
936
|
id: Scalars['ID']['output'];
|
|
929
937
|
/** PullRequest referenced by event. */
|
|
930
938
|
pullRequest?: Maybe<PullRequest>;
|
|
@@ -936,6 +944,7 @@ type AutomaticBaseChangeFailedEvent = Node & {
|
|
|
936
944
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
937
945
|
/** Identifies the date and time when the object was created. */
|
|
938
946
|
createdAt: Scalars['DateTime']['output'];
|
|
947
|
+
/** The Node ID of this object */
|
|
939
948
|
id: Scalars['ID']['output'];
|
|
940
949
|
/** The new base for this PR */
|
|
941
950
|
newBase: Scalars['String']['output'];
|
|
@@ -951,6 +960,7 @@ type AutomaticBaseChangeSucceededEvent = Node & {
|
|
|
951
960
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
952
961
|
/** Identifies the date and time when the object was created. */
|
|
953
962
|
createdAt: Scalars['DateTime']['output'];
|
|
963
|
+
/** The Node ID of this object */
|
|
954
964
|
id: Scalars['ID']['output'];
|
|
955
965
|
/** The new base for this PR */
|
|
956
966
|
newBase: Scalars['String']['output'];
|
|
@@ -970,6 +980,7 @@ type BaseRefChangedEvent = Node & {
|
|
|
970
980
|
currentRefName: Scalars['String']['output'];
|
|
971
981
|
/** Identifies the primary key from the database. */
|
|
972
982
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
983
|
+
/** The Node ID of this object */
|
|
973
984
|
id: Scalars['ID']['output'];
|
|
974
985
|
/** Identifies the name of the base ref for the pull request before it was changed. */
|
|
975
986
|
previousRefName: Scalars['String']['output'];
|
|
@@ -985,6 +996,7 @@ type BaseRefDeletedEvent = Node & {
|
|
|
985
996
|
baseRefName?: Maybe<Scalars['String']['output']>;
|
|
986
997
|
/** Identifies the date and time when the object was created. */
|
|
987
998
|
createdAt: Scalars['DateTime']['output'];
|
|
999
|
+
/** The Node ID of this object */
|
|
988
1000
|
id: Scalars['ID']['output'];
|
|
989
1001
|
/** PullRequest referenced by event. */
|
|
990
1002
|
pullRequest?: Maybe<PullRequest>;
|
|
@@ -1000,6 +1012,7 @@ type BaseRefForcePushedEvent = Node & {
|
|
|
1000
1012
|
beforeCommit?: Maybe<Commit>;
|
|
1001
1013
|
/** Identifies the date and time when the object was created. */
|
|
1002
1014
|
createdAt: Scalars['DateTime']['output'];
|
|
1015
|
+
/** The Node ID of this object */
|
|
1003
1016
|
id: Scalars['ID']['output'];
|
|
1004
1017
|
/** PullRequest referenced by event. */
|
|
1005
1018
|
pullRequest: PullRequest;
|
|
@@ -1040,6 +1053,7 @@ type Blob = GitObject & Node & {
|
|
|
1040
1053
|
commitResourcePath: Scalars['URI']['output'];
|
|
1041
1054
|
/** The HTTP URL for this Git object */
|
|
1042
1055
|
commitUrl: Scalars['URI']['output'];
|
|
1056
|
+
/** The Node ID of this object */
|
|
1043
1057
|
id: Scalars['ID']['output'];
|
|
1044
1058
|
/** Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding. */
|
|
1045
1059
|
isBinary?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1061,6 +1075,7 @@ type Bot = Actor & Node & UniformResourceLocatable & {
|
|
|
1061
1075
|
createdAt: Scalars['DateTime']['output'];
|
|
1062
1076
|
/** Identifies the primary key from the database. */
|
|
1063
1077
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
1078
|
+
/** The Node ID of this object */
|
|
1064
1079
|
id: Scalars['ID']['output'];
|
|
1065
1080
|
/** The username of the actor. */
|
|
1066
1081
|
login: Scalars['String']['output'];
|
|
@@ -1121,6 +1136,7 @@ type BranchProtectionRule = Node & {
|
|
|
1121
1136
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
1122
1137
|
/** Will new commits pushed to matching branches dismiss pull request review approvals. */
|
|
1123
1138
|
dismissesStaleReviews: Scalars['Boolean']['output'];
|
|
1139
|
+
/** The Node ID of this object */
|
|
1124
1140
|
id: Scalars['ID']['output'];
|
|
1125
1141
|
/** Can admins overwrite branch protection. */
|
|
1126
1142
|
isAdminEnforced: Scalars['Boolean']['output'];
|
|
@@ -1286,6 +1302,7 @@ type BypassForcePushAllowance = Node & {
|
|
|
1286
1302
|
actor?: Maybe<BranchActorAllowanceActor>;
|
|
1287
1303
|
/** Identifies the branch protection rule associated with the allowed user, team, or app. */
|
|
1288
1304
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
1305
|
+
/** The Node ID of this object */
|
|
1289
1306
|
id: Scalars['ID']['output'];
|
|
1290
1307
|
};
|
|
1291
1308
|
/** The connection type for BypassForcePushAllowance. */
|
|
@@ -1315,6 +1332,7 @@ type BypassPullRequestAllowance = Node & {
|
|
|
1315
1332
|
actor?: Maybe<BranchActorAllowanceActor>;
|
|
1316
1333
|
/** Identifies the branch protection rule associated with the allowed user, team, or app. */
|
|
1317
1334
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
1335
|
+
/** The Node ID of this object */
|
|
1318
1336
|
id: Scalars['ID']['output'];
|
|
1319
1337
|
};
|
|
1320
1338
|
/** The connection type for BypassPullRequestAllowance. */
|
|
@@ -1352,6 +1370,7 @@ type Cwe = Node & {
|
|
|
1352
1370
|
cweId: Scalars['String']['output'];
|
|
1353
1371
|
/** A detailed description of this CWE */
|
|
1354
1372
|
description: Scalars['String']['output'];
|
|
1373
|
+
/** The Node ID of this object */
|
|
1355
1374
|
id: Scalars['ID']['output'];
|
|
1356
1375
|
/** The name of this CWE */
|
|
1357
1376
|
name: Scalars['String']['output'];
|
|
@@ -1575,6 +1594,7 @@ type CheckRun = Node & RequirableByPullRequest & UniformResourceLocatable & {
|
|
|
1575
1594
|
detailsUrl?: Maybe<Scalars['URI']['output']>;
|
|
1576
1595
|
/** A reference for the check run on the integrator's system. */
|
|
1577
1596
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
1597
|
+
/** The Node ID of this object */
|
|
1578
1598
|
id: Scalars['ID']['output'];
|
|
1579
1599
|
/** Whether this is required to pass before merging for a specific pull request. */
|
|
1580
1600
|
isRequired: Scalars['Boolean']['output'];
|
|
@@ -1806,6 +1826,7 @@ type CheckSuite = Node & {
|
|
|
1806
1826
|
creator?: Maybe<User>;
|
|
1807
1827
|
/** Identifies the primary key from the database. */
|
|
1808
1828
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
1829
|
+
/** The Node ID of this object */
|
|
1809
1830
|
id: Scalars['ID']['output'];
|
|
1810
1831
|
/** A list of open pull requests matching the check suite. */
|
|
1811
1832
|
matchingPullRequests?: Maybe<PullRequestConnection>;
|
|
@@ -2040,6 +2061,7 @@ type ClosedEvent = Node & UniformResourceLocatable & {
|
|
|
2040
2061
|
closer?: Maybe<Closer>;
|
|
2041
2062
|
/** Identifies the date and time when the object was created. */
|
|
2042
2063
|
createdAt: Scalars['DateTime']['output'];
|
|
2064
|
+
/** The Node ID of this object */
|
|
2043
2065
|
id: Scalars['ID']['output'];
|
|
2044
2066
|
/** The HTTP path for this closed event. */
|
|
2045
2067
|
resourcePath: Scalars['URI']['output'];
|
|
@@ -2055,6 +2077,7 @@ type CodeOfConduct = Node & {
|
|
|
2055
2077
|
__typename?: 'CodeOfConduct';
|
|
2056
2078
|
/** The body of the Code of Conduct */
|
|
2057
2079
|
body?: Maybe<Scalars['String']['output']>;
|
|
2080
|
+
/** The Node ID of this object */
|
|
2058
2081
|
id: Scalars['ID']['output'];
|
|
2059
2082
|
/** The key for the Code of Conduct */
|
|
2060
2083
|
key: Scalars['String']['output'];
|
|
@@ -2091,6 +2114,7 @@ type Comment = {
|
|
|
2091
2114
|
createdViaEmail: Scalars['Boolean']['output'];
|
|
2092
2115
|
/** The actor who edited the comment. */
|
|
2093
2116
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
2117
|
+
/** The Node ID of the Comment object */
|
|
2094
2118
|
id: Scalars['ID']['output'];
|
|
2095
2119
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
2096
2120
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -2157,6 +2181,7 @@ type CommentDeletedEvent = Node & {
|
|
|
2157
2181
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
2158
2182
|
/** The user who authored the deleted comment. */
|
|
2159
2183
|
deletedCommentAuthor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
2184
|
+
/** The Node ID of this object */
|
|
2160
2185
|
id: Scalars['ID']['output'];
|
|
2161
2186
|
};
|
|
2162
2187
|
/** Represents a Git commit. */
|
|
@@ -2220,6 +2245,7 @@ type Commit = GitObject & Node & Subscribable & UniformResourceLocatable & {
|
|
|
2220
2245
|
file?: Maybe<TreeEntry>;
|
|
2221
2246
|
/** The linear commit history starting from (and including) this commit, in the same order as `git log`. */
|
|
2222
2247
|
history: CommitHistoryConnection;
|
|
2248
|
+
/** The Node ID of this object */
|
|
2223
2249
|
id: Scalars['ID']['output'];
|
|
2224
2250
|
/** The Git commit message */
|
|
2225
2251
|
message: Scalars['String']['output'];
|
|
@@ -2405,6 +2431,7 @@ type CommitComment = Comment & Deletable & Minimizable & Node & Reactable & Repo
|
|
|
2405
2431
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
2406
2432
|
/** The actor who edited the comment. */
|
|
2407
2433
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
2434
|
+
/** The Node ID of this object */
|
|
2408
2435
|
id: Scalars['ID']['output'];
|
|
2409
2436
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
2410
2437
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -2494,6 +2521,7 @@ type CommitCommentThread = Node & RepositoryNode & {
|
|
|
2494
2521
|
comments: CommitCommentConnection;
|
|
2495
2522
|
/** The commit the comments were made on. */
|
|
2496
2523
|
commit?: Maybe<Commit>;
|
|
2524
|
+
/** The Node ID of this object */
|
|
2497
2525
|
id: Scalars['ID']['output'];
|
|
2498
2526
|
/** The file the comments were made on. */
|
|
2499
2527
|
path?: Maybe<Scalars['String']['output']>;
|
|
@@ -2671,6 +2699,7 @@ type Comparison = Node & {
|
|
|
2671
2699
|
commits: ComparisonCommitConnection;
|
|
2672
2700
|
/** The head revision of this comparison. */
|
|
2673
2701
|
headTarget: Blob | Commit | Tag | Tree;
|
|
2702
|
+
/** The Node ID of this object */
|
|
2674
2703
|
id: Scalars['ID']['output'];
|
|
2675
2704
|
/** The status of this comparison. */
|
|
2676
2705
|
status: ComparisonStatus;
|
|
@@ -2713,6 +2742,7 @@ type ConnectedEvent = Node & {
|
|
|
2713
2742
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
2714
2743
|
/** Identifies the date and time when the object was created. */
|
|
2715
2744
|
createdAt: Scalars['DateTime']['output'];
|
|
2745
|
+
/** The Node ID of this object */
|
|
2716
2746
|
id: Scalars['ID']['output'];
|
|
2717
2747
|
/** Reference originated in a different repository. */
|
|
2718
2748
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -3066,6 +3096,7 @@ type ConvertToDraftEvent = Node & UniformResourceLocatable & {
|
|
|
3066
3096
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
3067
3097
|
/** Identifies the date and time when the object was created. */
|
|
3068
3098
|
createdAt: Scalars['DateTime']['output'];
|
|
3099
|
+
/** The Node ID of this object */
|
|
3069
3100
|
id: Scalars['ID']['output'];
|
|
3070
3101
|
/** PullRequest referenced by event. */
|
|
3071
3102
|
pullRequest: PullRequest;
|
|
@@ -3083,6 +3114,7 @@ type ConvertedNoteToIssueEvent = Node & {
|
|
|
3083
3114
|
createdAt: Scalars['DateTime']['output'];
|
|
3084
3115
|
/** Identifies the primary key from the database. */
|
|
3085
3116
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
3117
|
+
/** The Node ID of this object */
|
|
3086
3118
|
id: Scalars['ID']['output'];
|
|
3087
3119
|
};
|
|
3088
3120
|
/** Represents a 'converted_to_discussion' event on a given issue. */
|
|
@@ -3094,6 +3126,7 @@ type ConvertedToDiscussionEvent = Node & {
|
|
|
3094
3126
|
createdAt: Scalars['DateTime']['output'];
|
|
3095
3127
|
/** The discussion that the issue was converted into. */
|
|
3096
3128
|
discussion?: Maybe<Discussion>;
|
|
3129
|
+
/** The Node ID of this object */
|
|
3097
3130
|
id: Scalars['ID']['output'];
|
|
3098
3131
|
};
|
|
3099
3132
|
/** Autogenerated input type of CopyProjectV2 */
|
|
@@ -4121,6 +4154,7 @@ type CrossReferencedEvent = Node & UniformResourceLocatable & {
|
|
|
4121
4154
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
4122
4155
|
/** Identifies the date and time when the object was created. */
|
|
4123
4156
|
createdAt: Scalars['DateTime']['output'];
|
|
4157
|
+
/** The Node ID of this object */
|
|
4124
4158
|
id: Scalars['ID']['output'];
|
|
4125
4159
|
/** Reference originated in a different repository. */
|
|
4126
4160
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -4517,6 +4551,7 @@ type DemilestonedEvent = Node & {
|
|
|
4517
4551
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
4518
4552
|
/** Identifies the date and time when the object was created. */
|
|
4519
4553
|
createdAt: Scalars['DateTime']['output'];
|
|
4554
|
+
/** The Node ID of this object */
|
|
4520
4555
|
id: Scalars['ID']['output'];
|
|
4521
4556
|
/** Identifies the milestone title associated with the 'demilestoned' event. */
|
|
4522
4557
|
milestoneTitle: Scalars['String']['output'];
|
|
@@ -4572,6 +4607,7 @@ type DeployKey = Node & {
|
|
|
4572
4607
|
__typename?: 'DeployKey';
|
|
4573
4608
|
/** Identifies the date and time when the object was created. */
|
|
4574
4609
|
createdAt: Scalars['DateTime']['output'];
|
|
4610
|
+
/** The Node ID of the DeployKey object */
|
|
4575
4611
|
id: Scalars['ID']['output'];
|
|
4576
4612
|
/** The deploy key. */
|
|
4577
4613
|
key: Scalars['String']['output'];
|
|
@@ -4613,6 +4649,7 @@ type DeployedEvent = Node & {
|
|
|
4613
4649
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
4614
4650
|
/** The deployment associated with the 'deployed' event. */
|
|
4615
4651
|
deployment: Deployment;
|
|
4652
|
+
/** The Node ID of this object */
|
|
4616
4653
|
id: Scalars['ID']['output'];
|
|
4617
4654
|
/** PullRequest referenced by event. */
|
|
4618
4655
|
pullRequest: PullRequest;
|
|
@@ -4636,6 +4673,7 @@ type Deployment = Node & {
|
|
|
4636
4673
|
description?: Maybe<Scalars['String']['output']>;
|
|
4637
4674
|
/** The latest environment to which this deployment was made. */
|
|
4638
4675
|
environment?: Maybe<Scalars['String']['output']>;
|
|
4676
|
+
/** The Node ID of this object */
|
|
4639
4677
|
id: Scalars['ID']['output'];
|
|
4640
4678
|
/** The latest environment to which this deployment was made. */
|
|
4641
4679
|
latestEnvironment?: Maybe<Scalars['String']['output']>;
|
|
@@ -4694,6 +4732,7 @@ type DeploymentEnvironmentChangedEvent = Node & {
|
|
|
4694
4732
|
createdAt: Scalars['DateTime']['output'];
|
|
4695
4733
|
/** The deployment status that updated the deployment environment. */
|
|
4696
4734
|
deploymentStatus: DeploymentStatus;
|
|
4735
|
+
/** The Node ID of this object */
|
|
4697
4736
|
id: Scalars['ID']['output'];
|
|
4698
4737
|
/** PullRequest referenced by event. */
|
|
4699
4738
|
pullRequest: PullRequest;
|
|
@@ -4806,6 +4845,7 @@ type DeploymentReview = Node & {
|
|
|
4806
4845
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
4807
4846
|
/** The environments approved or rejected */
|
|
4808
4847
|
environments: EnvironmentConnection;
|
|
4848
|
+
/** The Node ID of this object */
|
|
4809
4849
|
id: Scalars['ID']['output'];
|
|
4810
4850
|
/** The decision of the user. */
|
|
4811
4851
|
state: DeploymentReviewState;
|
|
@@ -4904,6 +4944,7 @@ type DeploymentStatus = Node & {
|
|
|
4904
4944
|
description?: Maybe<Scalars['String']['output']>;
|
|
4905
4945
|
/** Identifies the environment URL of the deployment. */
|
|
4906
4946
|
environmentUrl?: Maybe<Scalars['URI']['output']>;
|
|
4947
|
+
/** The Node ID of this object */
|
|
4907
4948
|
id: Scalars['ID']['output'];
|
|
4908
4949
|
/** Identifies the log URL of the deployment. */
|
|
4909
4950
|
logUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -4995,6 +5036,7 @@ type DisconnectedEvent = Node & {
|
|
|
4995
5036
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
4996
5037
|
/** Identifies the date and time when the object was created. */
|
|
4997
5038
|
createdAt: Scalars['DateTime']['output'];
|
|
5039
|
+
/** The Node ID of this object */
|
|
4998
5040
|
id: Scalars['ID']['output'];
|
|
4999
5041
|
/** Reference originated in a different repository. */
|
|
5000
5042
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -5040,6 +5082,7 @@ type Discussion = Closable & Comment & Deletable & Labelable & Lockable & Node &
|
|
|
5040
5082
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
5041
5083
|
/** The actor who edited the comment. */
|
|
5042
5084
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
5085
|
+
/** The Node ID of this object */
|
|
5043
5086
|
id: Scalars['ID']['output'];
|
|
5044
5087
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
5045
5088
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -5140,6 +5183,7 @@ type DiscussionCategory = Node & RepositoryNode & {
|
|
|
5140
5183
|
emoji: Scalars['String']['output'];
|
|
5141
5184
|
/** This category's emoji rendered as HTML. */
|
|
5142
5185
|
emojiHTML: Scalars['HTML']['output'];
|
|
5186
|
+
/** The Node ID of this object */
|
|
5143
5187
|
id: Scalars['ID']['output'];
|
|
5144
5188
|
/** Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation. */
|
|
5145
5189
|
isAnswerable: Scalars['Boolean']['output'];
|
|
@@ -5205,6 +5249,7 @@ type DiscussionComment = Comment & Deletable & Minimizable & Node & Reactable &
|
|
|
5205
5249
|
discussion?: Maybe<Discussion>;
|
|
5206
5250
|
/** The actor who edited the comment. */
|
|
5207
5251
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
5252
|
+
/** The Node ID of this object */
|
|
5208
5253
|
id: Scalars['ID']['output'];
|
|
5209
5254
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
5210
5255
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -5342,6 +5387,7 @@ type DiscussionPoll = Node & {
|
|
|
5342
5387
|
__typename?: 'DiscussionPoll';
|
|
5343
5388
|
/** The discussion that this poll belongs to. */
|
|
5344
5389
|
discussion?: Maybe<Discussion>;
|
|
5390
|
+
/** The Node ID of this object */
|
|
5345
5391
|
id: Scalars['ID']['output'];
|
|
5346
5392
|
/** The options for this poll. */
|
|
5347
5393
|
options?: Maybe<DiscussionPollOptionConnection>;
|
|
@@ -5365,6 +5411,7 @@ type DiscussionPollOptionsArgs = {
|
|
|
5365
5411
|
/** An option for a discussion poll. */
|
|
5366
5412
|
type DiscussionPollOption = Node & {
|
|
5367
5413
|
__typename?: 'DiscussionPollOption';
|
|
5414
|
+
/** The Node ID of this object */
|
|
5368
5415
|
id: Scalars['ID']['output'];
|
|
5369
5416
|
/** The text for this option. */
|
|
5370
5417
|
option: Scalars['String']['output'];
|
|
@@ -5485,6 +5532,7 @@ type DraftIssue = Node & {
|
|
|
5485
5532
|
createdAt: Scalars['DateTime']['output'];
|
|
5486
5533
|
/** The actor who created this draft issue. */
|
|
5487
5534
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
5535
|
+
/** The Node ID of this object */
|
|
5488
5536
|
id: Scalars['ID']['output'];
|
|
5489
5537
|
/** List of items linked with the draft issue (currently draft issue can be linked to only one item). */
|
|
5490
5538
|
projectV2Items: ProjectV2ItemConnection;
|
|
@@ -5618,6 +5666,7 @@ type Enterprise = AnnouncementBanner & Node & {
|
|
|
5618
5666
|
description?: Maybe<Scalars['String']['output']>;
|
|
5619
5667
|
/** The description of the enterprise as HTML. */
|
|
5620
5668
|
descriptionHTML: Scalars['HTML']['output'];
|
|
5669
|
+
/** The Node ID of this object */
|
|
5621
5670
|
id: Scalars['ID']['output'];
|
|
5622
5671
|
/** The location of the enterprise. */
|
|
5623
5672
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -5701,6 +5750,7 @@ type EnterpriseAdministratorInvitation = Node & {
|
|
|
5701
5750
|
email?: Maybe<Scalars['String']['output']>;
|
|
5702
5751
|
/** The enterprise the invitation is for. */
|
|
5703
5752
|
enterprise: Enterprise;
|
|
5753
|
+
/** The Node ID of this object */
|
|
5704
5754
|
id: Scalars['ID']['output'];
|
|
5705
5755
|
/** The user who was invited to the enterprise. */
|
|
5706
5756
|
invitee?: Maybe<User>;
|
|
@@ -5874,6 +5924,7 @@ type EnterpriseIdentityProvider = Node & {
|
|
|
5874
5924
|
enterprise?: Maybe<Enterprise>;
|
|
5875
5925
|
/** ExternalIdentities provisioned by this identity provider. */
|
|
5876
5926
|
externalIdentities: ExternalIdentityConnection;
|
|
5927
|
+
/** The Node ID of this object */
|
|
5877
5928
|
id: Scalars['ID']['output'];
|
|
5878
5929
|
/** The x509 certificate used by the identity provider to sign assertions and responses. */
|
|
5879
5930
|
idpCertificate?: Maybe<Scalars['X509Certificate']['output']>;
|
|
@@ -6475,6 +6526,7 @@ type EnterprisePendingMemberInvitationEdge = {
|
|
|
6475
6526
|
/** A subset of repository information queryable from an enterprise. */
|
|
6476
6527
|
type EnterpriseRepositoryInfo = Node & {
|
|
6477
6528
|
__typename?: 'EnterpriseRepositoryInfo';
|
|
6529
|
+
/** The Node ID of this object */
|
|
6478
6530
|
id: Scalars['ID']['output'];
|
|
6479
6531
|
/** Identifies if the repository is private or internal. */
|
|
6480
6532
|
isPrivate: Scalars['Boolean']['output'];
|
|
@@ -6512,6 +6564,7 @@ type EnterpriseServerInstallation = Node & {
|
|
|
6512
6564
|
customerName: Scalars['String']['output'];
|
|
6513
6565
|
/** The host name of the Enterprise Server installation. */
|
|
6514
6566
|
hostName: Scalars['String']['output'];
|
|
6567
|
+
/** The Node ID of this object */
|
|
6515
6568
|
id: Scalars['ID']['output'];
|
|
6516
6569
|
/** Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect. */
|
|
6517
6570
|
isConnected: Scalars['Boolean']['output'];
|
|
@@ -6604,6 +6657,7 @@ type EnterpriseServerUserAccount = Node & {
|
|
|
6604
6657
|
emails: EnterpriseServerUserAccountEmailConnection;
|
|
6605
6658
|
/** The Enterprise Server installation on which this user account exists. */
|
|
6606
6659
|
enterpriseServerInstallation: EnterpriseServerInstallation;
|
|
6660
|
+
/** The Node ID of this object */
|
|
6607
6661
|
id: Scalars['ID']['output'];
|
|
6608
6662
|
/** Whether the user account is a site administrator on the Enterprise Server installation. */
|
|
6609
6663
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
@@ -6653,6 +6707,7 @@ type EnterpriseServerUserAccountEmail = Node & {
|
|
|
6653
6707
|
createdAt: Scalars['DateTime']['output'];
|
|
6654
6708
|
/** The email address. */
|
|
6655
6709
|
email: Scalars['String']['output'];
|
|
6710
|
+
/** The Node ID of this object */
|
|
6656
6711
|
id: Scalars['ID']['output'];
|
|
6657
6712
|
/** Indicates whether this is the primary email of the associated user account. */
|
|
6658
6713
|
isPrimary: Scalars['Boolean']['output'];
|
|
@@ -6714,6 +6769,7 @@ type EnterpriseServerUserAccountsUpload = Node & {
|
|
|
6714
6769
|
enterprise: Enterprise;
|
|
6715
6770
|
/** The Enterprise Server installation for which this upload was generated. */
|
|
6716
6771
|
enterpriseServerInstallation: EnterpriseServerInstallation;
|
|
6772
|
+
/** The Node ID of this object */
|
|
6717
6773
|
id: Scalars['ID']['output'];
|
|
6718
6774
|
/** The name of the file uploaded. */
|
|
6719
6775
|
name: Scalars['String']['output'];
|
|
@@ -6772,6 +6828,7 @@ type EnterpriseUserAccount = Actor & Node & {
|
|
|
6772
6828
|
enterprise: Enterprise;
|
|
6773
6829
|
/** A list of Enterprise Server installations this user is a member of. */
|
|
6774
6830
|
enterpriseInstallations: EnterpriseServerInstallationMembershipConnection;
|
|
6831
|
+
/** The Node ID of this object */
|
|
6775
6832
|
id: Scalars['ID']['output'];
|
|
6776
6833
|
/** An identifier for the enterprise user account, a login or email address */
|
|
6777
6834
|
login: Scalars['String']['output'];
|
|
@@ -6834,6 +6891,7 @@ type Environment = Node & {
|
|
|
6834
6891
|
__typename?: 'Environment';
|
|
6835
6892
|
/** Identifies the primary key from the database. */
|
|
6836
6893
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
6894
|
+
/** The Node ID of this object */
|
|
6837
6895
|
id: Scalars['ID']['output'];
|
|
6838
6896
|
/** The name of the environment */
|
|
6839
6897
|
name: Scalars['String']['output'];
|
|
@@ -6891,6 +6949,7 @@ type ExternalIdentity = Node & {
|
|
|
6891
6949
|
__typename?: 'ExternalIdentity';
|
|
6892
6950
|
/** The GUID for this identity */
|
|
6893
6951
|
guid: Scalars['String']['output'];
|
|
6952
|
+
/** The Node ID of this object */
|
|
6894
6953
|
id: Scalars['ID']['output'];
|
|
6895
6954
|
/** Organization invitation for this SCIM-provisioned external identity */
|
|
6896
6955
|
organizationInvitation?: Maybe<OrganizationInvitation>;
|
|
@@ -7214,6 +7273,7 @@ type Gist = Node & Starrable & UniformResourceLocatable & {
|
|
|
7214
7273
|
files?: Maybe<Array<Maybe<GistFile>>>;
|
|
7215
7274
|
/** A list of forks associated with the gist */
|
|
7216
7275
|
forks: GistConnection;
|
|
7276
|
+
/** The Node ID of this object */
|
|
7217
7277
|
id: Scalars['ID']['output'];
|
|
7218
7278
|
/** Identifies if the gist is a fork. */
|
|
7219
7279
|
isFork: Scalars['Boolean']['output'];
|
|
@@ -7289,6 +7349,7 @@ type GistComment = Comment & Deletable & Minimizable & Node & Updatable & Updata
|
|
|
7289
7349
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
7290
7350
|
/** The associated gist. */
|
|
7291
7351
|
gist: Gist;
|
|
7352
|
+
/** The Node ID of this object */
|
|
7292
7353
|
id: Scalars['ID']['output'];
|
|
7293
7354
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
7294
7355
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -7479,6 +7540,7 @@ type GitObject = {
|
|
|
7479
7540
|
commitResourcePath: Scalars['URI']['output'];
|
|
7480
7541
|
/** The HTTP URL for this Git object */
|
|
7481
7542
|
commitUrl: Scalars['URI']['output'];
|
|
7543
|
+
/** The Node ID of the GitObject object */
|
|
7482
7544
|
id: Scalars['ID']['output'];
|
|
7483
7545
|
/** The Git object ID */
|
|
7484
7546
|
oid: Scalars['GitObjectID']['output'];
|
|
@@ -7618,6 +7680,7 @@ type HeadRefDeletedEvent = Node & {
|
|
|
7618
7680
|
headRef?: Maybe<Ref>;
|
|
7619
7681
|
/** Identifies the name of the Ref associated with the `head_ref_deleted` event. */
|
|
7620
7682
|
headRefName: Scalars['String']['output'];
|
|
7683
|
+
/** The Node ID of this object */
|
|
7621
7684
|
id: Scalars['ID']['output'];
|
|
7622
7685
|
/** PullRequest referenced by event. */
|
|
7623
7686
|
pullRequest: PullRequest;
|
|
@@ -7633,6 +7696,7 @@ type HeadRefForcePushedEvent = Node & {
|
|
|
7633
7696
|
beforeCommit?: Maybe<Commit>;
|
|
7634
7697
|
/** Identifies the date and time when the object was created. */
|
|
7635
7698
|
createdAt: Scalars['DateTime']['output'];
|
|
7699
|
+
/** The Node ID of this object */
|
|
7636
7700
|
id: Scalars['ID']['output'];
|
|
7637
7701
|
/** PullRequest referenced by event. */
|
|
7638
7702
|
pullRequest: PullRequest;
|
|
@@ -7646,6 +7710,7 @@ type HeadRefRestoredEvent = Node & {
|
|
|
7646
7710
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
7647
7711
|
/** Identifies the date and time when the object was created. */
|
|
7648
7712
|
createdAt: Scalars['DateTime']['output'];
|
|
7713
|
+
/** The Node ID of this object */
|
|
7649
7714
|
id: Scalars['ID']['output'];
|
|
7650
7715
|
/** PullRequest referenced by event. */
|
|
7651
7716
|
pullRequest: PullRequest;
|
|
@@ -7705,6 +7770,7 @@ type IpAllowListEntry = Node & {
|
|
|
7705
7770
|
allowListValue: Scalars['String']['output'];
|
|
7706
7771
|
/** Identifies the date and time when the object was created. */
|
|
7707
7772
|
createdAt: Scalars['DateTime']['output'];
|
|
7773
|
+
/** The Node ID of this object */
|
|
7708
7774
|
id: Scalars['ID']['output'];
|
|
7709
7775
|
/** Whether the entry is currently active. */
|
|
7710
7776
|
isActive: Scalars['Boolean']['output'];
|
|
@@ -7795,6 +7861,7 @@ type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lockable
|
|
|
7795
7861
|
fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
|
|
7796
7862
|
/** The hovercard information for this issue */
|
|
7797
7863
|
hovercard: Hovercard;
|
|
7864
|
+
/** The Node ID of this object */
|
|
7798
7865
|
id: Scalars['ID']['output'];
|
|
7799
7866
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
7800
7867
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -8035,6 +8102,7 @@ type IssueComment = Comment & Deletable & Minimizable & Node & Reactable & Repos
|
|
|
8035
8102
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
8036
8103
|
/** Identifies the primary key from the database as a BigInt. */
|
|
8037
8104
|
fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
|
|
8105
|
+
/** The Node ID of this object */
|
|
8038
8106
|
id: Scalars['ID']['output'];
|
|
8039
8107
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
8040
8108
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -8404,6 +8472,7 @@ type Label = Node & {
|
|
|
8404
8472
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
8405
8473
|
/** A brief description of this label. */
|
|
8406
8474
|
description?: Maybe<Scalars['String']['output']>;
|
|
8475
|
+
/** The Node ID of this object */
|
|
8407
8476
|
id: Scalars['ID']['output'];
|
|
8408
8477
|
/** Indicates whether or not this is a default label. */
|
|
8409
8478
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -8498,6 +8567,7 @@ type LabeledEvent = Node & {
|
|
|
8498
8567
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
8499
8568
|
/** Identifies the date and time when the object was created. */
|
|
8500
8569
|
createdAt: Scalars['DateTime']['output'];
|
|
8570
|
+
/** The Node ID of this object */
|
|
8501
8571
|
id: Scalars['ID']['output'];
|
|
8502
8572
|
/** Identifies the label associated with the 'labeled' event. */
|
|
8503
8573
|
label: Label;
|
|
@@ -8509,6 +8579,7 @@ type Language = Node & {
|
|
|
8509
8579
|
__typename?: 'Language';
|
|
8510
8580
|
/** The color defined for the current language. */
|
|
8511
8581
|
color?: Maybe<Scalars['String']['output']>;
|
|
8582
|
+
/** The Node ID of this object */
|
|
8512
8583
|
id: Scalars['ID']['output'];
|
|
8513
8584
|
/** The name of the current language. */
|
|
8514
8585
|
name: Scalars['String']['output'];
|
|
@@ -8559,6 +8630,7 @@ type License = Node & {
|
|
|
8559
8630
|
featured: Scalars['Boolean']['output'];
|
|
8560
8631
|
/** Whether the license should be displayed in license pickers */
|
|
8561
8632
|
hidden: Scalars['Boolean']['output'];
|
|
8633
|
+
/** The Node ID of this object */
|
|
8562
8634
|
id: Scalars['ID']['output'];
|
|
8563
8635
|
/** Instructions on how to implement the license */
|
|
8564
8636
|
implementation?: Maybe<Scalars['String']['output']>;
|
|
@@ -8645,6 +8717,7 @@ type LinkRepositoryToProjectPayload = {
|
|
|
8645
8717
|
/** A branch linked to an issue. */
|
|
8646
8718
|
type LinkedBranch = Node & {
|
|
8647
8719
|
__typename?: 'LinkedBranch';
|
|
8720
|
+
/** The Node ID of this object */
|
|
8648
8721
|
id: Scalars['ID']['output'];
|
|
8649
8722
|
/** The branch's ref. */
|
|
8650
8723
|
ref?: Maybe<Ref>;
|
|
@@ -8712,6 +8785,7 @@ type LockedEvent = Node & {
|
|
|
8712
8785
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
8713
8786
|
/** Identifies the date and time when the object was created. */
|
|
8714
8787
|
createdAt: Scalars['DateTime']['output'];
|
|
8788
|
+
/** The Node ID of this object */
|
|
8715
8789
|
id: Scalars['ID']['output'];
|
|
8716
8790
|
/** Reason that the conversation was locked (optional). */
|
|
8717
8791
|
lockReason?: Maybe<LockReason>;
|
|
@@ -8731,6 +8805,7 @@ type Mannequin = Actor & Node & UniformResourceLocatable & {
|
|
|
8731
8805
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
8732
8806
|
/** The mannequin's email on the source instance. */
|
|
8733
8807
|
email?: Maybe<Scalars['String']['output']>;
|
|
8808
|
+
/** The Node ID of this object */
|
|
8734
8809
|
id: Scalars['ID']['output'];
|
|
8735
8810
|
/** The username of the actor. */
|
|
8736
8811
|
login: Scalars['String']['output'];
|
|
@@ -8851,6 +8926,7 @@ type MarkedAsDuplicateEvent = Node & {
|
|
|
8851
8926
|
createdAt: Scalars['DateTime']['output'];
|
|
8852
8927
|
/** The issue or pull request which has been marked as a duplicate of another. */
|
|
8853
8928
|
duplicate?: Maybe<IssueOrPullRequest>;
|
|
8929
|
+
/** The Node ID of this object */
|
|
8854
8930
|
id: Scalars['ID']['output'];
|
|
8855
8931
|
/** Canonical and duplicate belong to different repositories. */
|
|
8856
8932
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -8862,6 +8938,7 @@ type MarketplaceCategory = Node & {
|
|
|
8862
8938
|
description?: Maybe<Scalars['String']['output']>;
|
|
8863
8939
|
/** The technical description of how apps listed in this category work with GitHub. */
|
|
8864
8940
|
howItWorks?: Maybe<Scalars['String']['output']>;
|
|
8941
|
+
/** The Node ID of this object */
|
|
8865
8942
|
id: Scalars['ID']['output'];
|
|
8866
8943
|
/** The category's name. */
|
|
8867
8944
|
name: Scalars['String']['output'];
|
|
@@ -8907,6 +8984,7 @@ type MarketplaceListing = Node & {
|
|
|
8907
8984
|
howItWorks?: Maybe<Scalars['String']['output']>;
|
|
8908
8985
|
/** The listing's technical description rendered to HTML. */
|
|
8909
8986
|
howItWorksHTML: Scalars['HTML']['output'];
|
|
8987
|
+
/** The Node ID of this object */
|
|
8910
8988
|
id: Scalars['ID']['output'];
|
|
8911
8989
|
/** URL to install the product to the viewer's account or organization. */
|
|
8912
8990
|
installationUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -9041,6 +9119,7 @@ type MemberFeatureRequestNotification = Node & {
|
|
|
9041
9119
|
__typename?: 'MemberFeatureRequestNotification';
|
|
9042
9120
|
/** Represents member feature request body containing organization name and the number of feature requests */
|
|
9043
9121
|
body: Scalars['String']['output'];
|
|
9122
|
+
/** The Node ID of this object */
|
|
9044
9123
|
id: Scalars['ID']['output'];
|
|
9045
9124
|
/** Represents member feature request notification title */
|
|
9046
9125
|
title: Scalars['String']['output'];
|
|
@@ -9085,6 +9164,7 @@ type MembersCanDeleteReposClearAuditEntry = AuditEntry & EnterpriseAuditEntryDat
|
|
|
9085
9164
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
9086
9165
|
/** The HTTP URL for this enterprise. */
|
|
9087
9166
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
9167
|
+
/** The Node ID of this object */
|
|
9088
9168
|
id: Scalars['ID']['output'];
|
|
9089
9169
|
/** The corresponding operation type for the action */
|
|
9090
9170
|
operationType?: Maybe<OperationType>;
|
|
@@ -9130,6 +9210,7 @@ type MembersCanDeleteReposDisableAuditEntry = AuditEntry & EnterpriseAuditEntryD
|
|
|
9130
9210
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
9131
9211
|
/** The HTTP URL for this enterprise. */
|
|
9132
9212
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
9213
|
+
/** The Node ID of this object */
|
|
9133
9214
|
id: Scalars['ID']['output'];
|
|
9134
9215
|
/** The corresponding operation type for the action */
|
|
9135
9216
|
operationType?: Maybe<OperationType>;
|
|
@@ -9175,6 +9256,7 @@ type MembersCanDeleteReposEnableAuditEntry = AuditEntry & EnterpriseAuditEntryDa
|
|
|
9175
9256
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
9176
9257
|
/** The HTTP URL for this enterprise. */
|
|
9177
9258
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
9259
|
+
/** The Node ID of this object */
|
|
9178
9260
|
id: Scalars['ID']['output'];
|
|
9179
9261
|
/** The corresponding operation type for the action */
|
|
9180
9262
|
operationType?: Maybe<OperationType>;
|
|
@@ -9204,6 +9286,7 @@ type MentionedEvent = Node & {
|
|
|
9204
9286
|
createdAt: Scalars['DateTime']['output'];
|
|
9205
9287
|
/** Identifies the primary key from the database. */
|
|
9206
9288
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
9289
|
+
/** The Node ID of this object */
|
|
9207
9290
|
id: Scalars['ID']['output'];
|
|
9208
9291
|
};
|
|
9209
9292
|
/** Autogenerated input type of MergeBranch */
|
|
@@ -9277,6 +9360,7 @@ type MergeQueue = Node & {
|
|
|
9277
9360
|
configuration?: Maybe<MergeQueueConfiguration>;
|
|
9278
9361
|
/** The entries in the queue */
|
|
9279
9362
|
entries?: Maybe<MergeQueueEntryConnection>;
|
|
9363
|
+
/** The Node ID of this object */
|
|
9280
9364
|
id: Scalars['ID']['output'];
|
|
9281
9365
|
/** The estimated time in seconds until a newly added entry would be merged */
|
|
9282
9366
|
nextEntryEstimatedTimeToMerge?: Maybe<Scalars['Int']['output']>;
|
|
@@ -9328,6 +9412,7 @@ type MergeQueueEntry = Node & {
|
|
|
9328
9412
|
estimatedTimeToMerge?: Maybe<Scalars['Int']['output']>;
|
|
9329
9413
|
/** The head commit for this entry */
|
|
9330
9414
|
headCommit?: Maybe<Commit>;
|
|
9415
|
+
/** The Node ID of this object */
|
|
9331
9416
|
id: Scalars['ID']['output'];
|
|
9332
9417
|
/** Whether this pull request should jump the queue */
|
|
9333
9418
|
jump: Scalars['Boolean']['output'];
|
|
@@ -9397,6 +9482,7 @@ type MergedEvent = Node & UniformResourceLocatable & {
|
|
|
9397
9482
|
commit?: Maybe<Commit>;
|
|
9398
9483
|
/** Identifies the date and time when the object was created. */
|
|
9399
9484
|
createdAt: Scalars['DateTime']['output'];
|
|
9485
|
+
/** The Node ID of this object */
|
|
9400
9486
|
id: Scalars['ID']['output'];
|
|
9401
9487
|
/** Identifies the Ref associated with the `merge` event. */
|
|
9402
9488
|
mergeRef?: Maybe<Ref>;
|
|
@@ -9419,6 +9505,7 @@ type Migration = {
|
|
|
9419
9505
|
databaseId?: Maybe<Scalars['String']['output']>;
|
|
9420
9506
|
/** The reason the migration failed. */
|
|
9421
9507
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
9508
|
+
/** The Node ID of the Migration object */
|
|
9422
9509
|
id: Scalars['ID']['output'];
|
|
9423
9510
|
/** The URL for the migration log (expires 1 day after migration completes). */
|
|
9424
9511
|
migrationLogUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -9439,6 +9526,7 @@ type Migration = {
|
|
|
9439
9526
|
/** A GitHub Enterprise Importer (GEI) migration source. */
|
|
9440
9527
|
type MigrationSource = Node & {
|
|
9441
9528
|
__typename?: 'MigrationSource';
|
|
9529
|
+
/** The Node ID of this object */
|
|
9442
9530
|
id: Scalars['ID']['output'];
|
|
9443
9531
|
/** The migration source name. */
|
|
9444
9532
|
name: Scalars['String']['output'];
|
|
@@ -9486,6 +9574,7 @@ type Milestone = Closable & Node & UniformResourceLocatable & {
|
|
|
9486
9574
|
description?: Maybe<Scalars['String']['output']>;
|
|
9487
9575
|
/** Identifies the due date of the milestone. */
|
|
9488
9576
|
dueOn?: Maybe<Scalars['DateTime']['output']>;
|
|
9577
|
+
/** The Node ID of this object */
|
|
9489
9578
|
id: Scalars['ID']['output'];
|
|
9490
9579
|
/** A list of issues associated with the milestone. */
|
|
9491
9580
|
issues: IssueConnection;
|
|
@@ -9587,6 +9676,7 @@ type MilestonedEvent = Node & {
|
|
|
9587
9676
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
9588
9677
|
/** Identifies the date and time when the object was created. */
|
|
9589
9678
|
createdAt: Scalars['DateTime']['output'];
|
|
9679
|
+
/** The Node ID of this object */
|
|
9590
9680
|
id: Scalars['ID']['output'];
|
|
9591
9681
|
/** Identifies the milestone title associated with the 'milestoned' event. */
|
|
9592
9682
|
milestoneTitle: Scalars['String']['output'];
|
|
@@ -9668,6 +9758,7 @@ type MovedColumnsInProjectEvent = Node & {
|
|
|
9668
9758
|
createdAt: Scalars['DateTime']['output'];
|
|
9669
9759
|
/** Identifies the primary key from the database. */
|
|
9670
9760
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
9761
|
+
/** The Node ID of this object */
|
|
9671
9762
|
id: Scalars['ID']['output'];
|
|
9672
9763
|
};
|
|
9673
9764
|
/** The root query for implementing GraphQL mutations. */
|
|
@@ -9812,7 +9903,14 @@ type Mutation = {
|
|
|
9812
9903
|
createCommitOnBranch?: Maybe<CreateCommitOnBranchPayload>;
|
|
9813
9904
|
/** Create a discussion. */
|
|
9814
9905
|
createDiscussion?: Maybe<CreateDiscussionPayload>;
|
|
9815
|
-
/**
|
|
9906
|
+
/**
|
|
9907
|
+
* Creates an organization as part of an enterprise account. A personal access
|
|
9908
|
+
* token used to create an organization is implicitly permitted to update the
|
|
9909
|
+
* organization it created, if the organization is part of an enterprise that has
|
|
9910
|
+
* SAML enabled or uses Enterprise Managed Users. If the organization is not part
|
|
9911
|
+
* of such an enterprise, and instead has SAML enabled for it individually, the
|
|
9912
|
+
* token will then require SAML authorization to continue working against that organization.
|
|
9913
|
+
*/
|
|
9816
9914
|
createEnterpriseOrganization?: Maybe<CreateEnterpriseOrganizationPayload>;
|
|
9817
9915
|
/** Creates an environment or simply returns it if already exists. */
|
|
9818
9916
|
createEnvironment?: Maybe<CreateEnvironmentPayload>;
|
|
@@ -10050,6 +10148,8 @@ type Mutation = {
|
|
|
10050
10148
|
unpinIssue?: Maybe<UnpinIssuePayload>;
|
|
10051
10149
|
/** Marks a review thread as unresolved. */
|
|
10052
10150
|
unresolveReviewThread?: Maybe<UnresolveReviewThreadPayload>;
|
|
10151
|
+
/** Unsubscribes from notifications */
|
|
10152
|
+
unsubscribeFromNotifications?: Maybe<UnsubscribeFromNotificationsPayload>;
|
|
10053
10153
|
/** Update a branch protection rule */
|
|
10054
10154
|
updateBranchProtectionRule?: Maybe<UpdateBranchProtectionRulePayload>;
|
|
10055
10155
|
/** Update a check run */
|
|
@@ -10822,6 +10922,10 @@ type MutationUnresolveReviewThreadArgs = {
|
|
|
10822
10922
|
input: UnresolveReviewThreadInput;
|
|
10823
10923
|
};
|
|
10824
10924
|
/** The root query for implementing GraphQL mutations. */
|
|
10925
|
+
type MutationUnsubscribeFromNotificationsArgs = {
|
|
10926
|
+
input: UnsubscribeFromNotificationsInput;
|
|
10927
|
+
};
|
|
10928
|
+
/** The root query for implementing GraphQL mutations. */
|
|
10825
10929
|
type MutationUpdateBranchProtectionRuleArgs = {
|
|
10826
10930
|
input: UpdateBranchProtectionRuleInput;
|
|
10827
10931
|
};
|
|
@@ -11063,6 +11167,7 @@ type OidcProvider = Node & {
|
|
|
11063
11167
|
enterprise?: Maybe<Enterprise>;
|
|
11064
11168
|
/** ExternalIdentities provisioned by this identity provider. */
|
|
11065
11169
|
externalIdentities: ExternalIdentityConnection;
|
|
11170
|
+
/** The Node ID of this object */
|
|
11066
11171
|
id: Scalars['ID']['output'];
|
|
11067
11172
|
/** The OIDC identity provider type */
|
|
11068
11173
|
providerType: OidcProviderType;
|
|
@@ -11119,6 +11224,7 @@ type OauthApplicationCreateAuditEntry = AuditEntry & Node & OauthApplicationAudi
|
|
|
11119
11224
|
callbackUrl?: Maybe<Scalars['URI']['output']>;
|
|
11120
11225
|
/** The time the action was initiated */
|
|
11121
11226
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11227
|
+
/** The Node ID of this object */
|
|
11122
11228
|
id: Scalars['ID']['output'];
|
|
11123
11229
|
/** The name of the OAuth application. */
|
|
11124
11230
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11198,6 +11304,7 @@ type OrgAddBillingManagerAuditEntry = AuditEntry & Node & OrganizationAuditEntry
|
|
|
11198
11304
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11199
11305
|
/** The time the action was initiated */
|
|
11200
11306
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11307
|
+
/** The Node ID of this object */
|
|
11201
11308
|
id: Scalars['ID']['output'];
|
|
11202
11309
|
/** The email address used to invite a billing manager for the organization. */
|
|
11203
11310
|
invitationEmail?: Maybe<Scalars['String']['output']>;
|
|
@@ -11239,6 +11346,7 @@ type OrgAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
|
|
|
11239
11346
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11240
11347
|
/** The time the action was initiated */
|
|
11241
11348
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11349
|
+
/** The Node ID of this object */
|
|
11242
11350
|
id: Scalars['ID']['output'];
|
|
11243
11351
|
/** The corresponding operation type for the action */
|
|
11244
11352
|
operationType?: Maybe<OperationType>;
|
|
@@ -11294,6 +11402,7 @@ type OrgBlockUserAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
|
|
|
11294
11402
|
blockedUserUrl?: Maybe<Scalars['URI']['output']>;
|
|
11295
11403
|
/** The time the action was initiated */
|
|
11296
11404
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11405
|
+
/** The Node ID of this object */
|
|
11297
11406
|
id: Scalars['ID']['output'];
|
|
11298
11407
|
/** The corresponding operation type for the action */
|
|
11299
11408
|
operationType?: Maybe<OperationType>;
|
|
@@ -11333,6 +11442,7 @@ type OrgConfigDisableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizat
|
|
|
11333
11442
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11334
11443
|
/** The time the action was initiated */
|
|
11335
11444
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11445
|
+
/** The Node ID of this object */
|
|
11336
11446
|
id: Scalars['ID']['output'];
|
|
11337
11447
|
/** The corresponding operation type for the action */
|
|
11338
11448
|
operationType?: Maybe<OperationType>;
|
|
@@ -11372,6 +11482,7 @@ type OrgConfigEnableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizati
|
|
|
11372
11482
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11373
11483
|
/** The time the action was initiated */
|
|
11374
11484
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11485
|
+
/** The Node ID of this object */
|
|
11375
11486
|
id: Scalars['ID']['output'];
|
|
11376
11487
|
/** The corresponding operation type for the action */
|
|
11377
11488
|
operationType?: Maybe<OperationType>;
|
|
@@ -11413,6 +11524,7 @@ type OrgCreateAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
|
|
|
11413
11524
|
billingPlan?: Maybe<OrgCreateAuditEntryBillingPlan>;
|
|
11414
11525
|
/** The time the action was initiated */
|
|
11415
11526
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11527
|
+
/** The Node ID of this object */
|
|
11416
11528
|
id: Scalars['ID']['output'];
|
|
11417
11529
|
/** The corresponding operation type for the action */
|
|
11418
11530
|
operationType?: Maybe<OperationType>;
|
|
@@ -11464,6 +11576,7 @@ type OrgDisableOauthAppRestrictionsAuditEntry = AuditEntry & Node & Organization
|
|
|
11464
11576
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11465
11577
|
/** The time the action was initiated */
|
|
11466
11578
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11579
|
+
/** The Node ID of this object */
|
|
11467
11580
|
id: Scalars['ID']['output'];
|
|
11468
11581
|
/** The corresponding operation type for the action */
|
|
11469
11582
|
operationType?: Maybe<OperationType>;
|
|
@@ -11505,6 +11618,7 @@ type OrgDisableSamlAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
11505
11618
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11506
11619
|
/** The SAML provider's digest algorithm URL. */
|
|
11507
11620
|
digestMethodUrl?: Maybe<Scalars['URI']['output']>;
|
|
11621
|
+
/** The Node ID of this object */
|
|
11508
11622
|
id: Scalars['ID']['output'];
|
|
11509
11623
|
/** The SAML provider's issuer URL. */
|
|
11510
11624
|
issuerUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -11550,6 +11664,7 @@ type OrgDisableTwoFactorRequirementAuditEntry = AuditEntry & Node & Organization
|
|
|
11550
11664
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11551
11665
|
/** The time the action was initiated */
|
|
11552
11666
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11667
|
+
/** The Node ID of this object */
|
|
11553
11668
|
id: Scalars['ID']['output'];
|
|
11554
11669
|
/** The corresponding operation type for the action */
|
|
11555
11670
|
operationType?: Maybe<OperationType>;
|
|
@@ -11589,6 +11704,7 @@ type OrgEnableOauthAppRestrictionsAuditEntry = AuditEntry & Node & OrganizationA
|
|
|
11589
11704
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11590
11705
|
/** The time the action was initiated */
|
|
11591
11706
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11707
|
+
/** The Node ID of this object */
|
|
11592
11708
|
id: Scalars['ID']['output'];
|
|
11593
11709
|
/** The corresponding operation type for the action */
|
|
11594
11710
|
operationType?: Maybe<OperationType>;
|
|
@@ -11630,6 +11746,7 @@ type OrgEnableSamlAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
11630
11746
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11631
11747
|
/** The SAML provider's digest algorithm URL. */
|
|
11632
11748
|
digestMethodUrl?: Maybe<Scalars['URI']['output']>;
|
|
11749
|
+
/** The Node ID of this object */
|
|
11633
11750
|
id: Scalars['ID']['output'];
|
|
11634
11751
|
/** The SAML provider's issuer URL. */
|
|
11635
11752
|
issuerUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -11675,6 +11792,7 @@ type OrgEnableTwoFactorRequirementAuditEntry = AuditEntry & Node & OrganizationA
|
|
|
11675
11792
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11676
11793
|
/** The time the action was initiated */
|
|
11677
11794
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11795
|
+
/** The Node ID of this object */
|
|
11678
11796
|
id: Scalars['ID']['output'];
|
|
11679
11797
|
/** The corresponding operation type for the action */
|
|
11680
11798
|
operationType?: Maybe<OperationType>;
|
|
@@ -11727,6 +11845,7 @@ type OrgInviteMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
11727
11845
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11728
11846
|
/** The email address of the organization invitation. */
|
|
11729
11847
|
email?: Maybe<Scalars['String']['output']>;
|
|
11848
|
+
/** The Node ID of this object */
|
|
11730
11849
|
id: Scalars['ID']['output'];
|
|
11731
11850
|
/** The corresponding operation type for the action */
|
|
11732
11851
|
operationType?: Maybe<OperationType>;
|
|
@@ -11774,6 +11893,7 @@ type OrgInviteToBusinessAuditEntry = AuditEntry & EnterpriseAuditEntryData & Nod
|
|
|
11774
11893
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
11775
11894
|
/** The HTTP URL for this enterprise. */
|
|
11776
11895
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
11896
|
+
/** The Node ID of this object */
|
|
11777
11897
|
id: Scalars['ID']['output'];
|
|
11778
11898
|
/** The corresponding operation type for the action */
|
|
11779
11899
|
operationType?: Maybe<OperationType>;
|
|
@@ -11813,6 +11933,7 @@ type OrgOauthAppAccessApprovedAuditEntry = AuditEntry & Node & OauthApplicationA
|
|
|
11813
11933
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11814
11934
|
/** The time the action was initiated */
|
|
11815
11935
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11936
|
+
/** The Node ID of this object */
|
|
11816
11937
|
id: Scalars['ID']['output'];
|
|
11817
11938
|
/** The name of the OAuth application. */
|
|
11818
11939
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11858,6 +11979,7 @@ type OrgOauthAppAccessBlockedAuditEntry = AuditEntry & Node & OauthApplicationAu
|
|
|
11858
11979
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11859
11980
|
/** The time the action was initiated */
|
|
11860
11981
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11982
|
+
/** The Node ID of this object */
|
|
11861
11983
|
id: Scalars['ID']['output'];
|
|
11862
11984
|
/** The name of the OAuth application. */
|
|
11863
11985
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11903,6 +12025,7 @@ type OrgOauthAppAccessDeniedAuditEntry = AuditEntry & Node & OauthApplicationAud
|
|
|
11903
12025
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11904
12026
|
/** The time the action was initiated */
|
|
11905
12027
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12028
|
+
/** The Node ID of this object */
|
|
11906
12029
|
id: Scalars['ID']['output'];
|
|
11907
12030
|
/** The name of the OAuth application. */
|
|
11908
12031
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11948,6 +12071,7 @@ type OrgOauthAppAccessRequestedAuditEntry = AuditEntry & Node & OauthApplication
|
|
|
11948
12071
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11949
12072
|
/** The time the action was initiated */
|
|
11950
12073
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12074
|
+
/** The Node ID of this object */
|
|
11951
12075
|
id: Scalars['ID']['output'];
|
|
11952
12076
|
/** The name of the OAuth application. */
|
|
11953
12077
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11993,6 +12117,7 @@ type OrgOauthAppAccessUnblockedAuditEntry = AuditEntry & Node & OauthApplication
|
|
|
11993
12117
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11994
12118
|
/** The time the action was initiated */
|
|
11995
12119
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12120
|
+
/** The Node ID of this object */
|
|
11996
12121
|
id: Scalars['ID']['output'];
|
|
11997
12122
|
/** The name of the OAuth application. */
|
|
11998
12123
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -12038,6 +12163,7 @@ type OrgRemoveBillingManagerAuditEntry = AuditEntry & Node & OrganizationAuditEn
|
|
|
12038
12163
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12039
12164
|
/** The time the action was initiated */
|
|
12040
12165
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12166
|
+
/** The Node ID of this object */
|
|
12041
12167
|
id: Scalars['ID']['output'];
|
|
12042
12168
|
/** The corresponding operation type for the action */
|
|
12043
12169
|
operationType?: Maybe<OperationType>;
|
|
@@ -12087,6 +12213,7 @@ type OrgRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
12087
12213
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12088
12214
|
/** The time the action was initiated */
|
|
12089
12215
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12216
|
+
/** The Node ID of this object */
|
|
12090
12217
|
id: Scalars['ID']['output'];
|
|
12091
12218
|
/** The types of membership the member has with the organization. */
|
|
12092
12219
|
membershipTypes?: Maybe<Array<OrgRemoveMemberAuditEntryMembershipType>>;
|
|
@@ -12168,6 +12295,7 @@ type OrgRemoveOutsideCollaboratorAuditEntry = AuditEntry & Node & OrganizationAu
|
|
|
12168
12295
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12169
12296
|
/** The time the action was initiated */
|
|
12170
12297
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12298
|
+
/** The Node ID of this object */
|
|
12171
12299
|
id: Scalars['ID']['output'];
|
|
12172
12300
|
/** The types of membership the outside collaborator has with the organization. */
|
|
12173
12301
|
membershipTypes?: Maybe<Array<OrgRemoveOutsideCollaboratorAuditEntryMembershipType>>;
|
|
@@ -12232,6 +12360,7 @@ type OrgRestoreMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
12232
12360
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12233
12361
|
/** The time the action was initiated */
|
|
12234
12362
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12363
|
+
/** The Node ID of this object */
|
|
12235
12364
|
id: Scalars['ID']['output'];
|
|
12236
12365
|
/** The corresponding operation type for the action */
|
|
12237
12366
|
operationType?: Maybe<OperationType>;
|
|
@@ -12331,6 +12460,7 @@ type OrgUnblockUserAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
12331
12460
|
blockedUserUrl?: Maybe<Scalars['URI']['output']>;
|
|
12332
12461
|
/** The time the action was initiated */
|
|
12333
12462
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12463
|
+
/** The Node ID of this object */
|
|
12334
12464
|
id: Scalars['ID']['output'];
|
|
12335
12465
|
/** The corresponding operation type for the action */
|
|
12336
12466
|
operationType?: Maybe<OperationType>;
|
|
@@ -12370,6 +12500,7 @@ type OrgUpdateDefaultRepositoryPermissionAuditEntry = AuditEntry & Node & Organi
|
|
|
12370
12500
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12371
12501
|
/** The time the action was initiated */
|
|
12372
12502
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12503
|
+
/** The Node ID of this object */
|
|
12373
12504
|
id: Scalars['ID']['output'];
|
|
12374
12505
|
/** The corresponding operation type for the action */
|
|
12375
12506
|
operationType?: Maybe<OperationType>;
|
|
@@ -12423,6 +12554,7 @@ type OrgUpdateMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
12423
12554
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12424
12555
|
/** The time the action was initiated */
|
|
12425
12556
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12557
|
+
/** The Node ID of this object */
|
|
12426
12558
|
id: Scalars['ID']['output'];
|
|
12427
12559
|
/** The corresponding operation type for the action */
|
|
12428
12560
|
operationType?: Maybe<OperationType>;
|
|
@@ -12474,6 +12606,7 @@ type OrgUpdateMemberRepositoryCreationPermissionAuditEntry = AuditEntry & Node &
|
|
|
12474
12606
|
canCreateRepositories?: Maybe<Scalars['Boolean']['output']>;
|
|
12475
12607
|
/** The time the action was initiated */
|
|
12476
12608
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12609
|
+
/** The Node ID of this object */
|
|
12477
12610
|
id: Scalars['ID']['output'];
|
|
12478
12611
|
/** The corresponding operation type for the action */
|
|
12479
12612
|
operationType?: Maybe<OperationType>;
|
|
@@ -12535,6 +12668,7 @@ type OrgUpdateMemberRepositoryInvitationPermissionAuditEntry = AuditEntry & Node
|
|
|
12535
12668
|
canInviteOutsideCollaboratorsToRepositories?: Maybe<Scalars['Boolean']['output']>;
|
|
12536
12669
|
/** The time the action was initiated */
|
|
12537
12670
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12671
|
+
/** The Node ID of this object */
|
|
12538
12672
|
id: Scalars['ID']['output'];
|
|
12539
12673
|
/** The corresponding operation type for the action */
|
|
12540
12674
|
operationType?: Maybe<OperationType>;
|
|
@@ -12590,6 +12724,7 @@ type Organization = Actor & AnnouncementBanner & MemberStatusable & Node & Packa
|
|
|
12590
12724
|
estimatedNextSponsorsPayoutInCents: Scalars['Int']['output'];
|
|
12591
12725
|
/** True if this user/organization has a GitHub Sponsors listing. */
|
|
12592
12726
|
hasSponsorsListing: Scalars['Boolean']['output'];
|
|
12727
|
+
/** The Node ID of this object */
|
|
12593
12728
|
id: Scalars['ID']['output'];
|
|
12594
12729
|
/** The interaction ability settings for this organization. */
|
|
12595
12730
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
@@ -13129,6 +13264,7 @@ type OrganizationIdentityProvider = Node & {
|
|
|
13129
13264
|
digestMethod?: Maybe<Scalars['URI']['output']>;
|
|
13130
13265
|
/** External Identities provisioned by this Identity Provider */
|
|
13131
13266
|
externalIdentities: ExternalIdentityConnection;
|
|
13267
|
+
/** The Node ID of this object */
|
|
13132
13268
|
id: Scalars['ID']['output'];
|
|
13133
13269
|
/** The x509 certificate used by the Identity Provider to sign assertions and responses. */
|
|
13134
13270
|
idpCertificate?: Maybe<Scalars['X509Certificate']['output']>;
|
|
@@ -13163,6 +13299,7 @@ type OrganizationInvitation = Node & {
|
|
|
13163
13299
|
createdAt: Scalars['DateTime']['output'];
|
|
13164
13300
|
/** The email address of the user invited to the organization. */
|
|
13165
13301
|
email?: Maybe<Scalars['String']['output']>;
|
|
13302
|
+
/** The Node ID of this object */
|
|
13166
13303
|
id: Scalars['ID']['output'];
|
|
13167
13304
|
/** The source of the invitation. */
|
|
13168
13305
|
invitationSource: OrganizationInvitationSource;
|
|
@@ -13270,6 +13407,7 @@ type OrganizationMigration = Node & {
|
|
|
13270
13407
|
databaseId?: Maybe<Scalars['String']['output']>;
|
|
13271
13408
|
/** The reason the organization migration failed. */
|
|
13272
13409
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
13410
|
+
/** The Node ID of this object */
|
|
13273
13411
|
id: Scalars['ID']['output'];
|
|
13274
13412
|
/** The remaining amount of repos to be migrated. */
|
|
13275
13413
|
remainingRepositoriesCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13367,6 +13505,7 @@ type OrganizationsHovercardContextRelevantOrganizationsArgs = {
|
|
|
13367
13505
|
/** Information for an uploaded package. */
|
|
13368
13506
|
type Package = Node & {
|
|
13369
13507
|
__typename?: 'Package';
|
|
13508
|
+
/** The Node ID of this object */
|
|
13370
13509
|
id: Scalars['ID']['output'];
|
|
13371
13510
|
/** Find the latest version for the package. */
|
|
13372
13511
|
latestVersion?: Maybe<PackageVersion>;
|
|
@@ -13418,6 +13557,7 @@ type PackageEdge = {
|
|
|
13418
13557
|
/** A file in a package version. */
|
|
13419
13558
|
type PackageFile = Node & {
|
|
13420
13559
|
__typename?: 'PackageFile';
|
|
13560
|
+
/** The Node ID of this object */
|
|
13421
13561
|
id: Scalars['ID']['output'];
|
|
13422
13562
|
/** MD5 hash of the file. */
|
|
13423
13563
|
md5?: Maybe<Scalars['String']['output']>;
|
|
@@ -13480,6 +13620,7 @@ type PackageOrderField =
|
|
|
13480
13620
|
'CREATED_AT';
|
|
13481
13621
|
/** Represents an owner of a package. */
|
|
13482
13622
|
type PackageOwner = {
|
|
13623
|
+
/** The Node ID of the PackageOwner object */
|
|
13483
13624
|
id: Scalars['ID']['output'];
|
|
13484
13625
|
/** A list of packages under the owner. */
|
|
13485
13626
|
packages: PackageConnection;
|
|
@@ -13504,6 +13645,7 @@ type PackageStatistics = {
|
|
|
13504
13645
|
/** A version tag contains the mapping between a tag name and a version. */
|
|
13505
13646
|
type PackageTag = Node & {
|
|
13506
13647
|
__typename?: 'PackageTag';
|
|
13648
|
+
/** The Node ID of this object */
|
|
13507
13649
|
id: Scalars['ID']['output'];
|
|
13508
13650
|
/** Identifies the tag name of the version. */
|
|
13509
13651
|
name: Scalars['String']['output'];
|
|
@@ -13531,6 +13673,7 @@ type PackageVersion = Node & {
|
|
|
13531
13673
|
__typename?: 'PackageVersion';
|
|
13532
13674
|
/** List of files associated with this package version */
|
|
13533
13675
|
files: PackageFileConnection;
|
|
13676
|
+
/** The Node ID of this object */
|
|
13534
13677
|
id: Scalars['ID']['output'];
|
|
13535
13678
|
/** The package associated with this version. */
|
|
13536
13679
|
package?: Maybe<Package>;
|
|
@@ -13700,6 +13843,7 @@ type PinnedDiscussion = Node & RepositoryNode & {
|
|
|
13700
13843
|
discussion: Discussion;
|
|
13701
13844
|
/** Color stops of the chosen gradient */
|
|
13702
13845
|
gradientStopColors: Array<Scalars['String']['output']>;
|
|
13846
|
+
/** The Node ID of this object */
|
|
13703
13847
|
id: Scalars['ID']['output'];
|
|
13704
13848
|
/** Background texture pattern */
|
|
13705
13849
|
pattern: PinnedDiscussionPattern;
|
|
@@ -13765,6 +13909,7 @@ type PinnedEvent = Node & {
|
|
|
13765
13909
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
13766
13910
|
/** Identifies the date and time when the object was created. */
|
|
13767
13911
|
createdAt: Scalars['DateTime']['output'];
|
|
13912
|
+
/** The Node ID of this object */
|
|
13768
13913
|
id: Scalars['ID']['output'];
|
|
13769
13914
|
/** Identifies the issue associated with the event. */
|
|
13770
13915
|
issue: Issue;
|
|
@@ -13776,6 +13921,7 @@ type PinnedIssue = Node & {
|
|
|
13776
13921
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
13777
13922
|
/** Identifies the primary key from the database as a BigInt. */
|
|
13778
13923
|
fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
|
|
13924
|
+
/** The Node ID of this object */
|
|
13779
13925
|
id: Scalars['ID']['output'];
|
|
13780
13926
|
/** The issue that was pinned. */
|
|
13781
13927
|
issue: Issue;
|
|
@@ -13829,6 +13975,7 @@ type PrivateRepositoryForkingDisableAuditEntry = AuditEntry & EnterpriseAuditEnt
|
|
|
13829
13975
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
13830
13976
|
/** The HTTP URL for this enterprise. */
|
|
13831
13977
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
13978
|
+
/** The Node ID of this object */
|
|
13832
13979
|
id: Scalars['ID']['output'];
|
|
13833
13980
|
/** The corresponding operation type for the action */
|
|
13834
13981
|
operationType?: Maybe<OperationType>;
|
|
@@ -13882,6 +14029,7 @@ type PrivateRepositoryForkingEnableAuditEntry = AuditEntry & EnterpriseAuditEntr
|
|
|
13882
14029
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
13883
14030
|
/** The HTTP URL for this enterprise. */
|
|
13884
14031
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
14032
|
+
/** The Node ID of this object */
|
|
13885
14033
|
id: Scalars['ID']['output'];
|
|
13886
14034
|
/** The corresponding operation type for the action */
|
|
13887
14035
|
operationType?: Maybe<OperationType>;
|
|
@@ -13941,6 +14089,7 @@ type ProfileOwner = {
|
|
|
13941
14089
|
anyPinnableItems: Scalars['Boolean']['output'];
|
|
13942
14090
|
/** The public profile email. */
|
|
13943
14091
|
email?: Maybe<Scalars['String']['output']>;
|
|
14092
|
+
/** The Node ID of the ProfileOwner object */
|
|
13944
14093
|
id: Scalars['ID']['output'];
|
|
13945
14094
|
/**
|
|
13946
14095
|
* Showcases a selection of repositories and gists that the profile owner has
|
|
@@ -14003,6 +14152,7 @@ type Project = Closable & Node & Updatable & {
|
|
|
14003
14152
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
14004
14153
|
/** Identifies the primary key from the database. */
|
|
14005
14154
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14155
|
+
/** The Node ID of this object */
|
|
14006
14156
|
id: Scalars['ID']['output'];
|
|
14007
14157
|
/** The project's name. */
|
|
14008
14158
|
name: Scalars['String']['output'];
|
|
@@ -14062,6 +14212,7 @@ type ProjectCard = Node & {
|
|
|
14062
14212
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
14063
14213
|
/** Identifies the primary key from the database. */
|
|
14064
14214
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14215
|
+
/** The Node ID of this object */
|
|
14065
14216
|
id: Scalars['ID']['output'];
|
|
14066
14217
|
/** Whether the card is archived */
|
|
14067
14218
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -14123,6 +14274,7 @@ type ProjectColumn = Node & {
|
|
|
14123
14274
|
createdAt: Scalars['DateTime']['output'];
|
|
14124
14275
|
/** Identifies the primary key from the database. */
|
|
14125
14276
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14277
|
+
/** The Node ID of this object */
|
|
14126
14278
|
id: Scalars['ID']['output'];
|
|
14127
14279
|
/** The project column's name. */
|
|
14128
14280
|
name: Scalars['String']['output'];
|
|
@@ -14210,6 +14362,7 @@ type ProjectOrderField =
|
|
|
14210
14362
|
| 'UPDATED_AT';
|
|
14211
14363
|
/** Represents an owner of a Project. */
|
|
14212
14364
|
type ProjectOwner = {
|
|
14365
|
+
/** The Node ID of the ProjectOwner object */
|
|
14213
14366
|
id: Scalars['ID']['output'];
|
|
14214
14367
|
/** Find project by number. */
|
|
14215
14368
|
project?: Maybe<Project>;
|
|
@@ -14287,6 +14440,7 @@ type ProjectV2 = Closable & Node & Updatable & {
|
|
|
14287
14440
|
field?: Maybe<ProjectV2FieldConfiguration>;
|
|
14288
14441
|
/** List of fields and their constraints in the project */
|
|
14289
14442
|
fields: ProjectV2FieldConfigurationConnection;
|
|
14443
|
+
/** The Node ID of this object */
|
|
14290
14444
|
id: Scalars['ID']['output'];
|
|
14291
14445
|
/** List of items in the project */
|
|
14292
14446
|
items: ProjectV2ItemConnection;
|
|
@@ -14459,6 +14613,7 @@ type ProjectV2Field = Node & ProjectV2FieldCommon & {
|
|
|
14459
14613
|
dataType: ProjectV2FieldType;
|
|
14460
14614
|
/** Identifies the primary key from the database. */
|
|
14461
14615
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14616
|
+
/** The Node ID of this object */
|
|
14462
14617
|
id: Scalars['ID']['output'];
|
|
14463
14618
|
/** The project field's name. */
|
|
14464
14619
|
name: Scalars['String']['output'];
|
|
@@ -14475,6 +14630,7 @@ type ProjectV2FieldCommon = {
|
|
|
14475
14630
|
dataType: ProjectV2FieldType;
|
|
14476
14631
|
/** Identifies the primary key from the database. */
|
|
14477
14632
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14633
|
+
/** The Node ID of the ProjectV2FieldCommon object */
|
|
14478
14634
|
id: Scalars['ID']['output'];
|
|
14479
14635
|
/** The project field's name. */
|
|
14480
14636
|
name: Scalars['String']['output'];
|
|
@@ -14603,6 +14759,7 @@ type ProjectV2Item = Node & {
|
|
|
14603
14759
|
fieldValueByName?: Maybe<ProjectV2ItemFieldValue>;
|
|
14604
14760
|
/** The field values that are set on the item. */
|
|
14605
14761
|
fieldValues: ProjectV2ItemFieldValueConnection;
|
|
14762
|
+
/** The Node ID of this object */
|
|
14606
14763
|
id: Scalars['ID']['output'];
|
|
14607
14764
|
/** Whether the item is archived. */
|
|
14608
14765
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -14660,6 +14817,7 @@ type ProjectV2ItemFieldDateValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14660
14817
|
date?: Maybe<Scalars['Date']['output']>;
|
|
14661
14818
|
/** The project field that contains this value. */
|
|
14662
14819
|
field: ProjectV2FieldConfiguration;
|
|
14820
|
+
/** The Node ID of this object */
|
|
14663
14821
|
id: Scalars['ID']['output'];
|
|
14664
14822
|
/** The project item that contains this value. */
|
|
14665
14823
|
item: ProjectV2Item;
|
|
@@ -14679,6 +14837,7 @@ type ProjectV2ItemFieldIterationValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14679
14837
|
duration: Scalars['Int']['output'];
|
|
14680
14838
|
/** The project field that contains this value. */
|
|
14681
14839
|
field: ProjectV2FieldConfiguration;
|
|
14840
|
+
/** The Node ID of this object */
|
|
14682
14841
|
id: Scalars['ID']['output'];
|
|
14683
14842
|
/** The project item that contains this value. */
|
|
14684
14843
|
item: ProjectV2Item;
|
|
@@ -14727,6 +14886,7 @@ type ProjectV2ItemFieldNumberValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14727
14886
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14728
14887
|
/** The project field that contains this value. */
|
|
14729
14888
|
field: ProjectV2FieldConfiguration;
|
|
14889
|
+
/** The Node ID of this object */
|
|
14730
14890
|
id: Scalars['ID']['output'];
|
|
14731
14891
|
/** The project item that contains this value. */
|
|
14732
14892
|
item: ProjectV2Item;
|
|
@@ -14791,6 +14951,7 @@ type ProjectV2ItemFieldSingleSelectValue = Node & ProjectV2ItemFieldValueCommon
|
|
|
14791
14951
|
descriptionHTML?: Maybe<Scalars['String']['output']>;
|
|
14792
14952
|
/** The project field that contains this value. */
|
|
14793
14953
|
field: ProjectV2FieldConfiguration;
|
|
14954
|
+
/** The Node ID of this object */
|
|
14794
14955
|
id: Scalars['ID']['output'];
|
|
14795
14956
|
/** The project item that contains this value. */
|
|
14796
14957
|
item: ProjectV2Item;
|
|
@@ -14814,6 +14975,7 @@ type ProjectV2ItemFieldTextValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14814
14975
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14815
14976
|
/** The project field that contains this value. */
|
|
14816
14977
|
field: ProjectV2FieldConfiguration;
|
|
14978
|
+
/** The Node ID of this object */
|
|
14817
14979
|
id: Scalars['ID']['output'];
|
|
14818
14980
|
/** The project item that contains this value. */
|
|
14819
14981
|
item: ProjectV2Item;
|
|
@@ -14849,6 +15011,7 @@ type ProjectV2ItemFieldValueCommon = {
|
|
|
14849
15011
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14850
15012
|
/** The project field that contains this value. */
|
|
14851
15013
|
field: ProjectV2FieldConfiguration;
|
|
15014
|
+
/** The Node ID of the ProjectV2ItemFieldValueCommon object */
|
|
14852
15015
|
id: Scalars['ID']['output'];
|
|
14853
15016
|
/** The project item that contains this value. */
|
|
14854
15017
|
item: ProjectV2Item;
|
|
@@ -14918,6 +15081,7 @@ type ProjectV2IterationField = Node & ProjectV2FieldCommon & {
|
|
|
14918
15081
|
dataType: ProjectV2FieldType;
|
|
14919
15082
|
/** Identifies the primary key from the database. */
|
|
14920
15083
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15084
|
+
/** The Node ID of this object */
|
|
14921
15085
|
id: Scalars['ID']['output'];
|
|
14922
15086
|
/** The project field's name. */
|
|
14923
15087
|
name: Scalars['String']['output'];
|
|
@@ -14971,6 +15135,7 @@ type ProjectV2OrderField =
|
|
|
14971
15135
|
| 'UPDATED_AT';
|
|
14972
15136
|
/** Represents an owner of a project (beta). */
|
|
14973
15137
|
type ProjectV2Owner = {
|
|
15138
|
+
/** The Node ID of the ProjectV2Owner object */
|
|
14974
15139
|
id: Scalars['ID']['output'];
|
|
14975
15140
|
/** Find a project by number. */
|
|
14976
15141
|
projectV2?: Maybe<ProjectV2>;
|
|
@@ -15021,6 +15186,7 @@ type ProjectV2SingleSelectField = Node & ProjectV2FieldCommon & {
|
|
|
15021
15186
|
dataType: ProjectV2FieldType;
|
|
15022
15187
|
/** Identifies the primary key from the database. */
|
|
15023
15188
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15189
|
+
/** The Node ID of this object */
|
|
15024
15190
|
id: Scalars['ID']['output'];
|
|
15025
15191
|
/** The project field's name. */
|
|
15026
15192
|
name: Scalars['String']['output'];
|
|
@@ -15158,6 +15324,7 @@ type ProjectV2View = Node & {
|
|
|
15158
15324
|
groupBy?: Maybe<ProjectV2FieldConnection>;
|
|
15159
15325
|
/** The view's group-by field. */
|
|
15160
15326
|
groupByFields?: Maybe<ProjectV2FieldConfigurationConnection>;
|
|
15327
|
+
/** The Node ID of this object */
|
|
15161
15328
|
id: Scalars['ID']['output'];
|
|
15162
15329
|
/** The project view's layout. */
|
|
15163
15330
|
layout: ProjectV2ViewLayout;
|
|
@@ -15303,6 +15470,7 @@ type ProjectV2Workflow = Node & {
|
|
|
15303
15470
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15304
15471
|
/** Whether the workflow is enabled. */
|
|
15305
15472
|
enabled: Scalars['Boolean']['output'];
|
|
15473
|
+
/** The Node ID of this object */
|
|
15306
15474
|
id: Scalars['ID']['output'];
|
|
15307
15475
|
/** The name of the workflow. */
|
|
15308
15476
|
name: Scalars['String']['output'];
|
|
@@ -15362,6 +15530,7 @@ type PublicKey = Node & {
|
|
|
15362
15530
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
15363
15531
|
/** The fingerprint for this PublicKey. */
|
|
15364
15532
|
fingerprint: Scalars['String']['output'];
|
|
15533
|
+
/** The Node ID of this object */
|
|
15365
15534
|
id: Scalars['ID']['output'];
|
|
15366
15535
|
/** Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user. */
|
|
15367
15536
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -15478,6 +15647,7 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
|
|
|
15478
15647
|
headRepositoryOwner?: Maybe<Organization | User>;
|
|
15479
15648
|
/** The hovercard information for this issue */
|
|
15480
15649
|
hovercard: Hovercard;
|
|
15650
|
+
/** The Node ID of this object */
|
|
15481
15651
|
id: Scalars['ID']['output'];
|
|
15482
15652
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
15483
15653
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -15832,6 +16002,7 @@ type PullRequestCommit = Node & UniformResourceLocatable & {
|
|
|
15832
16002
|
__typename?: 'PullRequestCommit';
|
|
15833
16003
|
/** The Git commit object */
|
|
15834
16004
|
commit: Commit;
|
|
16005
|
+
/** The Node ID of this object */
|
|
15835
16006
|
id: Scalars['ID']['output'];
|
|
15836
16007
|
/** The pull request this commit belongs to */
|
|
15837
16008
|
pullRequest: PullRequest;
|
|
@@ -15847,6 +16018,7 @@ type PullRequestCommitCommentThread = Node & RepositoryNode & {
|
|
|
15847
16018
|
comments: CommitCommentConnection;
|
|
15848
16019
|
/** The commit the comments were made on. */
|
|
15849
16020
|
commit: Commit;
|
|
16021
|
+
/** The Node ID of this object */
|
|
15850
16022
|
id: Scalars['ID']['output'];
|
|
15851
16023
|
/** The file the comments were made on. */
|
|
15852
16024
|
path?: Maybe<Scalars['String']['output']>;
|
|
@@ -15995,6 +16167,7 @@ type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable &
|
|
|
15995
16167
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15996
16168
|
/** The actor who edited the comment. */
|
|
15997
16169
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
16170
|
+
/** The Node ID of this object */
|
|
15998
16171
|
id: Scalars['ID']['output'];
|
|
15999
16172
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
16000
16173
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -16102,6 +16275,7 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
|
|
|
16102
16275
|
draftedAt: Scalars['DateTime']['output'];
|
|
16103
16276
|
/** The actor who edited the comment. */
|
|
16104
16277
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
16278
|
+
/** The Node ID of this object */
|
|
16105
16279
|
id: Scalars['ID']['output'];
|
|
16106
16280
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
16107
16281
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -16293,6 +16467,7 @@ type PullRequestReviewThread = Node & {
|
|
|
16293
16467
|
comments: PullRequestReviewCommentConnection;
|
|
16294
16468
|
/** The side of the diff on which this thread was placed. */
|
|
16295
16469
|
diffSide: DiffSide;
|
|
16470
|
+
/** The Node ID of this object */
|
|
16296
16471
|
id: Scalars['ID']['output'];
|
|
16297
16472
|
/** Whether or not the thread has been collapsed (resolved) */
|
|
16298
16473
|
isCollapsed: Scalars['Boolean']['output'];
|
|
@@ -16396,6 +16571,7 @@ type PullRequestThread = Node & {
|
|
|
16396
16571
|
comments: PullRequestReviewCommentConnection;
|
|
16397
16572
|
/** The side of the diff on which this thread was placed. */
|
|
16398
16573
|
diffSide: DiffSide;
|
|
16574
|
+
/** The Node ID of this object */
|
|
16399
16575
|
id: Scalars['ID']['output'];
|
|
16400
16576
|
/** Whether or not the thread has been collapsed (resolved) */
|
|
16401
16577
|
isCollapsed: Scalars['Boolean']['output'];
|
|
@@ -16611,6 +16787,7 @@ type PullRequestUpdateState =
|
|
|
16611
16787
|
/** A Git push. */
|
|
16612
16788
|
type Push = Node & {
|
|
16613
16789
|
__typename?: 'Push';
|
|
16790
|
+
/** The Node ID of this object */
|
|
16614
16791
|
id: Scalars['ID']['output'];
|
|
16615
16792
|
/** The SHA after the push */
|
|
16616
16793
|
nextSha?: Maybe<Scalars['GitObjectID']['output']>;
|
|
@@ -16630,6 +16807,7 @@ type PushAllowance = Node & {
|
|
|
16630
16807
|
actor?: Maybe<PushAllowanceActor>;
|
|
16631
16808
|
/** Identifies the branch protection rule associated with the allowed user, team, or app. */
|
|
16632
16809
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
16810
|
+
/** The Node ID of this object */
|
|
16633
16811
|
id: Scalars['ID']['output'];
|
|
16634
16812
|
};
|
|
16635
16813
|
/** Types that can be an actor. */
|
|
@@ -16878,6 +17056,7 @@ type RateLimit = {
|
|
|
16878
17056
|
type Reactable = {
|
|
16879
17057
|
/** Identifies the primary key from the database. */
|
|
16880
17058
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
17059
|
+
/** The Node ID of the Reactable object */
|
|
16881
17060
|
id: Scalars['ID']['output'];
|
|
16882
17061
|
/** A list of reactions grouped by content left on the subject. */
|
|
16883
17062
|
reactionGroups?: Maybe<Array<ReactionGroup>>;
|
|
@@ -16925,6 +17104,7 @@ type Reaction = Node & {
|
|
|
16925
17104
|
createdAt: Scalars['DateTime']['output'];
|
|
16926
17105
|
/** Identifies the primary key from the database. */
|
|
16927
17106
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
17107
|
+
/** The Node ID of this object */
|
|
16928
17108
|
id: Scalars['ID']['output'];
|
|
16929
17109
|
/** The reactable piece of content */
|
|
16930
17110
|
reactable: CommitComment | Discussion | DiscussionComment | Issue | IssueComment | PullRequest | PullRequestReview | PullRequestReviewComment | Release | TeamDiscussion | TeamDiscussionComment;
|
|
@@ -17046,6 +17226,7 @@ type ReadyForReviewEvent = Node & UniformResourceLocatable & {
|
|
|
17046
17226
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
17047
17227
|
/** Identifies the date and time when the object was created. */
|
|
17048
17228
|
createdAt: Scalars['DateTime']['output'];
|
|
17229
|
+
/** The Node ID of this object */
|
|
17049
17230
|
id: Scalars['ID']['output'];
|
|
17050
17231
|
/** PullRequest referenced by event. */
|
|
17051
17232
|
pullRequest: PullRequest;
|
|
@@ -17063,6 +17244,7 @@ type Ref = Node & {
|
|
|
17063
17244
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
17064
17245
|
/** Compares the current ref as a base ref to another head ref, if the comparison can be made. */
|
|
17065
17246
|
compare?: Maybe<Comparison>;
|
|
17247
|
+
/** The Node ID of this object */
|
|
17066
17248
|
id: Scalars['ID']['output'];
|
|
17067
17249
|
/** The ref name. */
|
|
17068
17250
|
name: Scalars['String']['output'];
|
|
@@ -17186,6 +17368,7 @@ type ReferencedEvent = Node & {
|
|
|
17186
17368
|
commitRepository: Repository;
|
|
17187
17369
|
/** Identifies the date and time when the object was created. */
|
|
17188
17370
|
createdAt: Scalars['DateTime']['output'];
|
|
17371
|
+
/** The Node ID of this object */
|
|
17189
17372
|
id: Scalars['ID']['output'];
|
|
17190
17373
|
/** Reference originated in a different repository. */
|
|
17191
17374
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -17258,6 +17441,7 @@ type Release = Node & Reactable & UniformResourceLocatable & {
|
|
|
17258
17441
|
description?: Maybe<Scalars['String']['output']>;
|
|
17259
17442
|
/** The description of this release rendered to HTML. */
|
|
17260
17443
|
descriptionHTML?: Maybe<Scalars['HTML']['output']>;
|
|
17444
|
+
/** The Node ID of this object */
|
|
17261
17445
|
id: Scalars['ID']['output'];
|
|
17262
17446
|
/** Whether or not the release is a draft */
|
|
17263
17447
|
isDraft: Scalars['Boolean']['output'];
|
|
@@ -17335,6 +17519,7 @@ type ReleaseAsset = Node & {
|
|
|
17335
17519
|
downloadCount: Scalars['Int']['output'];
|
|
17336
17520
|
/** Identifies the URL where you can download the release asset via the browser. */
|
|
17337
17521
|
downloadUrl: Scalars['URI']['output'];
|
|
17522
|
+
/** The Node ID of this object */
|
|
17338
17523
|
id: Scalars['ID']['output'];
|
|
17339
17524
|
/** Identifies the title of the release asset. */
|
|
17340
17525
|
name: Scalars['String']['output'];
|
|
@@ -17612,6 +17797,7 @@ type RemovedFromMergeQueueEvent = Node & {
|
|
|
17612
17797
|
createdAt: Scalars['DateTime']['output'];
|
|
17613
17798
|
/** The user who removed this Pull Request from the merge queue */
|
|
17614
17799
|
enqueuer?: Maybe<User>;
|
|
17800
|
+
/** The Node ID of this object */
|
|
17615
17801
|
id: Scalars['ID']['output'];
|
|
17616
17802
|
/** The merge queue where this pull request was removed from. */
|
|
17617
17803
|
mergeQueue?: Maybe<MergeQueue>;
|
|
@@ -17629,6 +17815,7 @@ type RemovedFromProjectEvent = Node & {
|
|
|
17629
17815
|
createdAt: Scalars['DateTime']['output'];
|
|
17630
17816
|
/** Identifies the primary key from the database. */
|
|
17631
17817
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
17818
|
+
/** The Node ID of this object */
|
|
17632
17819
|
id: Scalars['ID']['output'];
|
|
17633
17820
|
};
|
|
17634
17821
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
@@ -17640,6 +17827,7 @@ type RenamedTitleEvent = Node & {
|
|
|
17640
17827
|
createdAt: Scalars['DateTime']['output'];
|
|
17641
17828
|
/** Identifies the current title of the issue or pull request. */
|
|
17642
17829
|
currentTitle: Scalars['String']['output'];
|
|
17830
|
+
/** The Node ID of this object */
|
|
17643
17831
|
id: Scalars['ID']['output'];
|
|
17644
17832
|
/** Identifies the previous title of the issue or pull request. */
|
|
17645
17833
|
previousTitle: Scalars['String']['output'];
|
|
@@ -17702,6 +17890,7 @@ type ReopenedEvent = Node & {
|
|
|
17702
17890
|
closable: Discussion | Issue | Milestone | Project | ProjectV2 | PullRequest;
|
|
17703
17891
|
/** Identifies the date and time when the object was created. */
|
|
17704
17892
|
createdAt: Scalars['DateTime']['output'];
|
|
17893
|
+
/** The Node ID of this object */
|
|
17705
17894
|
id: Scalars['ID']['output'];
|
|
17706
17895
|
/** The reason the issue state was changed to open. */
|
|
17707
17896
|
stateReason?: Maybe<IssueStateReason>;
|
|
@@ -17725,6 +17914,7 @@ type RepoAccessAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
|
|
|
17725
17914
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17726
17915
|
/** The time the action was initiated */
|
|
17727
17916
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
17917
|
+
/** The Node ID of this object */
|
|
17728
17918
|
id: Scalars['ID']['output'];
|
|
17729
17919
|
/** The corresponding operation type for the action */
|
|
17730
17920
|
operationType?: Maybe<OperationType>;
|
|
@@ -17782,6 +17972,7 @@ type RepoAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
17782
17972
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17783
17973
|
/** The time the action was initiated */
|
|
17784
17974
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
17975
|
+
/** The Node ID of this object */
|
|
17785
17976
|
id: Scalars['ID']['output'];
|
|
17786
17977
|
/** The corresponding operation type for the action */
|
|
17787
17978
|
operationType?: Maybe<OperationType>;
|
|
@@ -17839,6 +18030,7 @@ type RepoAddTopicAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & R
|
|
|
17839
18030
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17840
18031
|
/** The time the action was initiated */
|
|
17841
18032
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18033
|
+
/** The Node ID of this object */
|
|
17842
18034
|
id: Scalars['ID']['output'];
|
|
17843
18035
|
/** The corresponding operation type for the action */
|
|
17844
18036
|
operationType?: Maybe<OperationType>;
|
|
@@ -17890,6 +18082,7 @@ type RepoArchivedAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & R
|
|
|
17890
18082
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17891
18083
|
/** The time the action was initiated */
|
|
17892
18084
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18085
|
+
/** The Node ID of this object */
|
|
17893
18086
|
id: Scalars['ID']['output'];
|
|
17894
18087
|
/** The corresponding operation type for the action */
|
|
17895
18088
|
operationType?: Maybe<OperationType>;
|
|
@@ -17947,6 +18140,7 @@ type RepoChangeMergeSettingAuditEntry = AuditEntry & Node & OrganizationAuditEnt
|
|
|
17947
18140
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17948
18141
|
/** The time the action was initiated */
|
|
17949
18142
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18143
|
+
/** The Node ID of this object */
|
|
17950
18144
|
id: Scalars['ID']['output'];
|
|
17951
18145
|
/** Whether the change was to enable (true) or disable (false) the merge type */
|
|
17952
18146
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18006,6 +18200,7 @@ type RepoConfigDisableAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiz
|
|
|
18006
18200
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18007
18201
|
/** The time the action was initiated */
|
|
18008
18202
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18203
|
+
/** The Node ID of this object */
|
|
18009
18204
|
id: Scalars['ID']['output'];
|
|
18010
18205
|
/** The corresponding operation type for the action */
|
|
18011
18206
|
operationType?: Maybe<OperationType>;
|
|
@@ -18053,6 +18248,7 @@ type RepoConfigDisableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organiza
|
|
|
18053
18248
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18054
18249
|
/** The time the action was initiated */
|
|
18055
18250
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18251
|
+
/** The Node ID of this object */
|
|
18056
18252
|
id: Scalars['ID']['output'];
|
|
18057
18253
|
/** The corresponding operation type for the action */
|
|
18058
18254
|
operationType?: Maybe<OperationType>;
|
|
@@ -18100,6 +18296,7 @@ type RepoConfigDisableContributorsOnlyAuditEntry = AuditEntry & Node & Organizat
|
|
|
18100
18296
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18101
18297
|
/** The time the action was initiated */
|
|
18102
18298
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18299
|
+
/** The Node ID of this object */
|
|
18103
18300
|
id: Scalars['ID']['output'];
|
|
18104
18301
|
/** The corresponding operation type for the action */
|
|
18105
18302
|
operationType?: Maybe<OperationType>;
|
|
@@ -18147,6 +18344,7 @@ type RepoConfigDisableSockpuppetDisallowedAuditEntry = AuditEntry & Node & Organ
|
|
|
18147
18344
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18148
18345
|
/** The time the action was initiated */
|
|
18149
18346
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18347
|
+
/** The Node ID of this object */
|
|
18150
18348
|
id: Scalars['ID']['output'];
|
|
18151
18349
|
/** The corresponding operation type for the action */
|
|
18152
18350
|
operationType?: Maybe<OperationType>;
|
|
@@ -18194,6 +18392,7 @@ type RepoConfigEnableAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiza
|
|
|
18194
18392
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18195
18393
|
/** The time the action was initiated */
|
|
18196
18394
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18395
|
+
/** The Node ID of this object */
|
|
18197
18396
|
id: Scalars['ID']['output'];
|
|
18198
18397
|
/** The corresponding operation type for the action */
|
|
18199
18398
|
operationType?: Maybe<OperationType>;
|
|
@@ -18241,6 +18440,7 @@ type RepoConfigEnableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizat
|
|
|
18241
18440
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18242
18441
|
/** The time the action was initiated */
|
|
18243
18442
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18443
|
+
/** The Node ID of this object */
|
|
18244
18444
|
id: Scalars['ID']['output'];
|
|
18245
18445
|
/** The corresponding operation type for the action */
|
|
18246
18446
|
operationType?: Maybe<OperationType>;
|
|
@@ -18288,6 +18488,7 @@ type RepoConfigEnableContributorsOnlyAuditEntry = AuditEntry & Node & Organizati
|
|
|
18288
18488
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18289
18489
|
/** The time the action was initiated */
|
|
18290
18490
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18491
|
+
/** The Node ID of this object */
|
|
18291
18492
|
id: Scalars['ID']['output'];
|
|
18292
18493
|
/** The corresponding operation type for the action */
|
|
18293
18494
|
operationType?: Maybe<OperationType>;
|
|
@@ -18335,6 +18536,7 @@ type RepoConfigEnableSockpuppetDisallowedAuditEntry = AuditEntry & Node & Organi
|
|
|
18335
18536
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18336
18537
|
/** The time the action was initiated */
|
|
18337
18538
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18539
|
+
/** The Node ID of this object */
|
|
18338
18540
|
id: Scalars['ID']['output'];
|
|
18339
18541
|
/** The corresponding operation type for the action */
|
|
18340
18542
|
operationType?: Maybe<OperationType>;
|
|
@@ -18382,6 +18584,7 @@ type RepoConfigLockAnonymousGitAccessAuditEntry = AuditEntry & Node & Organizati
|
|
|
18382
18584
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18383
18585
|
/** The time the action was initiated */
|
|
18384
18586
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18587
|
+
/** The Node ID of this object */
|
|
18385
18588
|
id: Scalars['ID']['output'];
|
|
18386
18589
|
/** The corresponding operation type for the action */
|
|
18387
18590
|
operationType?: Maybe<OperationType>;
|
|
@@ -18429,6 +18632,7 @@ type RepoConfigUnlockAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiza
|
|
|
18429
18632
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18430
18633
|
/** The time the action was initiated */
|
|
18431
18634
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18635
|
+
/** The Node ID of this object */
|
|
18432
18636
|
id: Scalars['ID']['output'];
|
|
18433
18637
|
/** The corresponding operation type for the action */
|
|
18434
18638
|
operationType?: Maybe<OperationType>;
|
|
@@ -18480,6 +18684,7 @@ type RepoCreateAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
|
|
|
18480
18684
|
forkParentName?: Maybe<Scalars['String']['output']>;
|
|
18481
18685
|
/** The name of the root repository for this network. */
|
|
18482
18686
|
forkSourceName?: Maybe<Scalars['String']['output']>;
|
|
18687
|
+
/** The Node ID of this object */
|
|
18483
18688
|
id: Scalars['ID']['output'];
|
|
18484
18689
|
/** The corresponding operation type for the action */
|
|
18485
18690
|
operationType?: Maybe<OperationType>;
|
|
@@ -18537,6 +18742,7 @@ type RepoDestroyAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Re
|
|
|
18537
18742
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18538
18743
|
/** The time the action was initiated */
|
|
18539
18744
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18745
|
+
/** The Node ID of this object */
|
|
18540
18746
|
id: Scalars['ID']['output'];
|
|
18541
18747
|
/** The corresponding operation type for the action */
|
|
18542
18748
|
operationType?: Maybe<OperationType>;
|
|
@@ -18594,6 +18800,7 @@ type RepoRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
18594
18800
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18595
18801
|
/** The time the action was initiated */
|
|
18596
18802
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18803
|
+
/** The Node ID of this object */
|
|
18597
18804
|
id: Scalars['ID']['output'];
|
|
18598
18805
|
/** The corresponding operation type for the action */
|
|
18599
18806
|
operationType?: Maybe<OperationType>;
|
|
@@ -18651,6 +18858,7 @@ type RepoRemoveTopicAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
18651
18858
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18652
18859
|
/** The time the action was initiated */
|
|
18653
18860
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18861
|
+
/** The Node ID of this object */
|
|
18654
18862
|
id: Scalars['ID']['output'];
|
|
18655
18863
|
/** The corresponding operation type for the action */
|
|
18656
18864
|
operationType?: Maybe<OperationType>;
|
|
@@ -18775,6 +18983,7 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
18775
18983
|
hasWikiEnabled: Scalars['Boolean']['output'];
|
|
18776
18984
|
/** The repository's URL. */
|
|
18777
18985
|
homepageUrl?: Maybe<Scalars['URI']['output']>;
|
|
18986
|
+
/** The Node ID of this object */
|
|
18778
18987
|
id: Scalars['ID']['output'];
|
|
18779
18988
|
/** The interaction ability settings for this repository. */
|
|
18780
18989
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
@@ -19572,6 +19781,7 @@ type RepositoryInvitation = Node & {
|
|
|
19572
19781
|
__typename?: 'RepositoryInvitation';
|
|
19573
19782
|
/** The email address that received the invitation. */
|
|
19574
19783
|
email?: Maybe<Scalars['String']['output']>;
|
|
19784
|
+
/** The Node ID of this object */
|
|
19575
19785
|
id: Scalars['ID']['output'];
|
|
19576
19786
|
/** The user who received the invitation. */
|
|
19577
19787
|
invitee?: Maybe<User>;
|
|
@@ -19640,6 +19850,7 @@ type RepositoryMigration = Migration & Node & {
|
|
|
19640
19850
|
databaseId?: Maybe<Scalars['String']['output']>;
|
|
19641
19851
|
/** The reason the migration failed. */
|
|
19642
19852
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
19853
|
+
/** The Node ID of this object */
|
|
19643
19854
|
id: Scalars['ID']['output'];
|
|
19644
19855
|
/** The URL for the migration log (expires 1 day after migration completes). */
|
|
19645
19856
|
migrationLogUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -19747,6 +19958,7 @@ type RepositoryOrderField =
|
|
|
19747
19958
|
type RepositoryOwner = {
|
|
19748
19959
|
/** A URL pointing to the owner's public avatar. */
|
|
19749
19960
|
avatarUrl: Scalars['URI']['output'];
|
|
19961
|
+
/** The Node ID of the RepositoryOwner object */
|
|
19750
19962
|
id: Scalars['ID']['output'];
|
|
19751
19963
|
/** The username used to login. */
|
|
19752
19964
|
login: Scalars['String']['output'];
|
|
@@ -19807,6 +20019,7 @@ type RepositoryPrivacy =
|
|
|
19807
20019
|
/** A repository rule. */
|
|
19808
20020
|
type RepositoryRule = Node & {
|
|
19809
20021
|
__typename?: 'RepositoryRule';
|
|
20022
|
+
/** The Node ID of this object */
|
|
19810
20023
|
id: Scalars['ID']['output'];
|
|
19811
20024
|
/** The parameters for this rule. */
|
|
19812
20025
|
parameters?: Maybe<RuleParameters>;
|
|
@@ -19939,6 +20152,7 @@ type RepositoryRuleset = Node & {
|
|
|
19939
20152
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
19940
20153
|
/** The enforcement level of this ruleset */
|
|
19941
20154
|
enforcement: RuleEnforcement;
|
|
20155
|
+
/** The Node ID of this object */
|
|
19942
20156
|
id: Scalars['ID']['output'];
|
|
19943
20157
|
/** Name of the ruleset. */
|
|
19944
20158
|
name: Scalars['String']['output'];
|
|
@@ -19973,6 +20187,7 @@ type RepositoryRulesetBypassActor = Node & {
|
|
|
19973
20187
|
actor?: Maybe<BypassActor>;
|
|
19974
20188
|
/** The mode for the bypass actor */
|
|
19975
20189
|
bypassMode?: Maybe<RepositoryRulesetBypassActorBypassMode>;
|
|
20190
|
+
/** The Node ID of this object */
|
|
19976
20191
|
id: Scalars['ID']['output'];
|
|
19977
20192
|
/** This actor represents the ability for an organization owner to bypass */
|
|
19978
20193
|
organizationAdmin: Scalars['Boolean']['output'];
|
|
@@ -20052,6 +20267,7 @@ type RepositoryRulesetTarget =
|
|
|
20052
20267
|
/** A repository-topic connects a repository to a topic. */
|
|
20053
20268
|
type RepositoryTopic = Node & UniformResourceLocatable & {
|
|
20054
20269
|
__typename?: 'RepositoryTopic';
|
|
20270
|
+
/** The Node ID of this object */
|
|
20055
20271
|
id: Scalars['ID']['output'];
|
|
20056
20272
|
/** The HTTP path for this repository-topic. */
|
|
20057
20273
|
resourcePath: Scalars['URI']['output'];
|
|
@@ -20113,6 +20329,7 @@ type RepositoryVisibilityChangeDisableAuditEntry = AuditEntry & EnterpriseAuditE
|
|
|
20113
20329
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
20114
20330
|
/** The HTTP URL for this enterprise. */
|
|
20115
20331
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
20332
|
+
/** The Node ID of this object */
|
|
20116
20333
|
id: Scalars['ID']['output'];
|
|
20117
20334
|
/** The corresponding operation type for the action */
|
|
20118
20335
|
operationType?: Maybe<OperationType>;
|
|
@@ -20158,6 +20375,7 @@ type RepositoryVisibilityChangeEnableAuditEntry = AuditEntry & EnterpriseAuditEn
|
|
|
20158
20375
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
20159
20376
|
/** The HTTP URL for this enterprise. */
|
|
20160
20377
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
20378
|
+
/** The Node ID of this object */
|
|
20161
20379
|
id: Scalars['ID']['output'];
|
|
20162
20380
|
/** The corresponding operation type for the action */
|
|
20163
20381
|
operationType?: Maybe<OperationType>;
|
|
@@ -20199,6 +20417,7 @@ type RepositoryVulnerabilityAlert = Node & RepositoryNode & {
|
|
|
20199
20417
|
dismisser?: Maybe<User>;
|
|
20200
20418
|
/** When was the alert fixed? */
|
|
20201
20419
|
fixedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20420
|
+
/** The Node ID of this object */
|
|
20202
20421
|
id: Scalars['ID']['output'];
|
|
20203
20422
|
/** Identifies the alert number. */
|
|
20204
20423
|
number: Scalars['Int']['output'];
|
|
@@ -20476,6 +20695,7 @@ type ReviewDismissalAllowance = Node & {
|
|
|
20476
20695
|
actor?: Maybe<ReviewDismissalAllowanceActor>;
|
|
20477
20696
|
/** Identifies the branch protection rule associated with the allowed user, team, or app. */
|
|
20478
20697
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
20698
|
+
/** The Node ID of this object */
|
|
20479
20699
|
id: Scalars['ID']['output'];
|
|
20480
20700
|
};
|
|
20481
20701
|
/** Types that can be an actor. */
|
|
@@ -20513,6 +20733,7 @@ type ReviewDismissedEvent = Node & UniformResourceLocatable & {
|
|
|
20513
20733
|
dismissalMessage?: Maybe<Scalars['String']['output']>;
|
|
20514
20734
|
/** Identifies the optional message associated with the event, rendered to HTML. */
|
|
20515
20735
|
dismissalMessageHTML?: Maybe<Scalars['String']['output']>;
|
|
20736
|
+
/** The Node ID of this object */
|
|
20516
20737
|
id: Scalars['ID']['output'];
|
|
20517
20738
|
/** Identifies the previous state of the review with the 'review_dismissed' event. */
|
|
20518
20739
|
previousReviewState: PullRequestReviewState;
|
|
@@ -20534,6 +20755,7 @@ type ReviewRequest = Node & {
|
|
|
20534
20755
|
asCodeOwner: Scalars['Boolean']['output'];
|
|
20535
20756
|
/** Identifies the primary key from the database. */
|
|
20536
20757
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
20758
|
+
/** The Node ID of this object */
|
|
20537
20759
|
id: Scalars['ID']['output'];
|
|
20538
20760
|
/** Identifies the pull request associated with this review request. */
|
|
20539
20761
|
pullRequest: PullRequest;
|
|
@@ -20567,6 +20789,7 @@ type ReviewRequestRemovedEvent = Node & {
|
|
|
20567
20789
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
20568
20790
|
/** Identifies the date and time when the object was created. */
|
|
20569
20791
|
createdAt: Scalars['DateTime']['output'];
|
|
20792
|
+
/** The Node ID of this object */
|
|
20570
20793
|
id: Scalars['ID']['output'];
|
|
20571
20794
|
/** PullRequest referenced by event. */
|
|
20572
20795
|
pullRequest: PullRequest;
|
|
@@ -20580,6 +20803,7 @@ type ReviewRequestedEvent = Node & {
|
|
|
20580
20803
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
20581
20804
|
/** Identifies the date and time when the object was created. */
|
|
20582
20805
|
createdAt: Scalars['DateTime']['output'];
|
|
20806
|
+
/** The Node ID of this object */
|
|
20583
20807
|
id: Scalars['ID']['output'];
|
|
20584
20808
|
/** PullRequest referenced by event. */
|
|
20585
20809
|
pullRequest: PullRequest;
|
|
@@ -20717,6 +20941,7 @@ type SavedReply = Node & {
|
|
|
20717
20941
|
bodyHTML: Scalars['HTML']['output'];
|
|
20718
20942
|
/** Identifies the primary key from the database. */
|
|
20719
20943
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
20944
|
+
/** The Node ID of this object */
|
|
20720
20945
|
id: Scalars['ID']['output'];
|
|
20721
20946
|
/** The title of the saved reply. */
|
|
20722
20947
|
title: Scalars['String']['output'];
|
|
@@ -20839,6 +21064,7 @@ type SecurityAdvisory = Node & {
|
|
|
20839
21064
|
description: Scalars['String']['output'];
|
|
20840
21065
|
/** The GitHub Security Advisory ID */
|
|
20841
21066
|
ghsaId: Scalars['String']['output'];
|
|
21067
|
+
/** The Node ID of this object */
|
|
20842
21068
|
id: Scalars['ID']['output'];
|
|
20843
21069
|
/** A list of identifiers for this advisory */
|
|
20844
21070
|
identifiers: Array<SecurityAdvisoryIdentifier>;
|
|
@@ -21403,6 +21629,7 @@ type SponsorsActivity = Node & {
|
|
|
21403
21629
|
action: SponsorsActivityAction;
|
|
21404
21630
|
/** The sponsor's current privacy level. */
|
|
21405
21631
|
currentPrivacyLevel?: Maybe<SponsorshipPrivacy>;
|
|
21632
|
+
/** The Node ID of this object */
|
|
21406
21633
|
id: Scalars['ID']['output'];
|
|
21407
21634
|
/** The platform that was used to pay for the sponsorship. */
|
|
21408
21635
|
paymentSource?: Maybe<SponsorshipPaymentSource>;
|
|
@@ -22031,6 +22258,7 @@ type SponsorsListing = Node & {
|
|
|
22031
22258
|
fullDescription: Scalars['String']['output'];
|
|
22032
22259
|
/** The full description of the listing rendered to HTML. */
|
|
22033
22260
|
fullDescriptionHTML: Scalars['HTML']['output'];
|
|
22261
|
+
/** The Node ID of this object */
|
|
22034
22262
|
id: Scalars['ID']['output'];
|
|
22035
22263
|
/** Whether this listing is publicly visible. */
|
|
22036
22264
|
isPublic: Scalars['Boolean']['output'];
|
|
@@ -22085,6 +22313,7 @@ type SponsorsListingFeaturedItem = Node & {
|
|
|
22085
22313
|
description?: Maybe<Scalars['String']['output']>;
|
|
22086
22314
|
/** The record that is featured on the GitHub Sponsors profile. */
|
|
22087
22315
|
featureable: SponsorsListingFeatureableItem;
|
|
22316
|
+
/** The Node ID of this object */
|
|
22088
22317
|
id: Scalars['ID']['output'];
|
|
22089
22318
|
/**
|
|
22090
22319
|
* The position of this featured item on the GitHub Sponsors profile with a lower
|
|
@@ -22119,6 +22348,7 @@ type SponsorsTier = Node & {
|
|
|
22119
22348
|
description: Scalars['String']['output'];
|
|
22120
22349
|
/** The tier description rendered to HTML */
|
|
22121
22350
|
descriptionHTML: Scalars['HTML']['output'];
|
|
22351
|
+
/** The Node ID of this object */
|
|
22122
22352
|
id: Scalars['ID']['output'];
|
|
22123
22353
|
/**
|
|
22124
22354
|
* Whether this tier was chosen at checkout time by the sponsor rather than
|
|
@@ -22213,6 +22443,7 @@ type Sponsorship = Node & {
|
|
|
22213
22443
|
__typename?: 'Sponsorship';
|
|
22214
22444
|
/** Identifies the date and time when the object was created. */
|
|
22215
22445
|
createdAt: Scalars['DateTime']['output'];
|
|
22446
|
+
/** The Node ID of this object */
|
|
22216
22447
|
id: Scalars['ID']['output'];
|
|
22217
22448
|
/**
|
|
22218
22449
|
* Whether the sponsorship is active. False implies the sponsor is a past sponsor
|
|
@@ -22288,6 +22519,7 @@ type SponsorshipNewsletter = Node & {
|
|
|
22288
22519
|
body: Scalars['String']['output'];
|
|
22289
22520
|
/** Identifies the date and time when the object was created. */
|
|
22290
22521
|
createdAt: Scalars['DateTime']['output'];
|
|
22522
|
+
/** The Node ID of this object */
|
|
22291
22523
|
id: Scalars['ID']['output'];
|
|
22292
22524
|
/** Indicates if the newsletter has been made available to sponsors. */
|
|
22293
22525
|
isPublished: Scalars['Boolean']['output'];
|
|
@@ -22423,6 +22655,7 @@ type StargazerEdge = {
|
|
|
22423
22655
|
};
|
|
22424
22656
|
/** Things that can be starred. */
|
|
22425
22657
|
type Starrable = {
|
|
22658
|
+
/** The Node ID of the Starrable object */
|
|
22426
22659
|
id: Scalars['ID']['output'];
|
|
22427
22660
|
/** Returns a count of how many stargazers there are on this object */
|
|
22428
22661
|
stargazerCount: Scalars['Int']['output'];
|
|
@@ -22531,6 +22764,7 @@ type Status = Node & {
|
|
|
22531
22764
|
context?: Maybe<StatusContext>;
|
|
22532
22765
|
/** The individual status contexts for this commit. */
|
|
22533
22766
|
contexts: Array<StatusContext>;
|
|
22767
|
+
/** The Node ID of this object */
|
|
22534
22768
|
id: Scalars['ID']['output'];
|
|
22535
22769
|
/** The combined commit status. */
|
|
22536
22770
|
state: StatusState;
|
|
@@ -22568,6 +22802,7 @@ type StatusCheckRollup = Node & {
|
|
|
22568
22802
|
commit?: Maybe<Commit>;
|
|
22569
22803
|
/** A list of status contexts and check runs for this commit. */
|
|
22570
22804
|
contexts: StatusCheckRollupContextConnection;
|
|
22805
|
+
/** The Node ID of this object */
|
|
22571
22806
|
id: Scalars['ID']['output'];
|
|
22572
22807
|
/** The combined status for the commit. */
|
|
22573
22808
|
state: StatusState;
|
|
@@ -22624,6 +22859,7 @@ type StatusContext = Node & RequirableByPullRequest & {
|
|
|
22624
22859
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
22625
22860
|
/** The description for this status context. */
|
|
22626
22861
|
description?: Maybe<Scalars['String']['output']>;
|
|
22862
|
+
/** The Node ID of this object */
|
|
22627
22863
|
id: Scalars['ID']['output'];
|
|
22628
22864
|
/** Whether this is required to pass before merging for a specific pull request. */
|
|
22629
22865
|
isRequired: Scalars['Boolean']['output'];
|
|
@@ -22747,6 +22983,7 @@ type SubmoduleEdge = {
|
|
|
22747
22983
|
};
|
|
22748
22984
|
/** Entities that can be subscribed to for web and email notifications. */
|
|
22749
22985
|
type Subscribable = {
|
|
22986
|
+
/** The Node ID of the Subscribable object */
|
|
22750
22987
|
id: Scalars['ID']['output'];
|
|
22751
22988
|
/** Check if the viewer is able to change their subscription status for the repository. */
|
|
22752
22989
|
viewerCanSubscribe: Scalars['Boolean']['output'];
|
|
@@ -22755,6 +22992,7 @@ type Subscribable = {
|
|
|
22755
22992
|
};
|
|
22756
22993
|
/** Entities that can be subscribed to for web and email notifications. */
|
|
22757
22994
|
type SubscribableThread = {
|
|
22995
|
+
/** The Node ID of the SubscribableThread object */
|
|
22758
22996
|
id: Scalars['ID']['output'];
|
|
22759
22997
|
/** Identifies the viewer's thread subscription form action. */
|
|
22760
22998
|
viewerThreadSubscriptionFormAction?: Maybe<ThreadSubscriptionFormAction>;
|
|
@@ -22768,6 +23006,7 @@ type SubscribedEvent = Node & {
|
|
|
22768
23006
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
22769
23007
|
/** Identifies the date and time when the object was created. */
|
|
22770
23008
|
createdAt: Scalars['DateTime']['output'];
|
|
23009
|
+
/** The Node ID of this object */
|
|
22771
23010
|
id: Scalars['ID']['output'];
|
|
22772
23011
|
/** Object referenced by event. */
|
|
22773
23012
|
subscribable: Commit | Discussion | Issue | PullRequest | Repository | Team | TeamDiscussion;
|
|
@@ -22799,6 +23038,7 @@ type Tag = GitObject & Node & {
|
|
|
22799
23038
|
commitResourcePath: Scalars['URI']['output'];
|
|
22800
23039
|
/** The HTTP URL for this Git object */
|
|
22801
23040
|
commitUrl: Scalars['URI']['output'];
|
|
23041
|
+
/** The Node ID of this object */
|
|
22802
23042
|
id: Scalars['ID']['output'];
|
|
22803
23043
|
/** The Git tag message. */
|
|
22804
23044
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -22865,6 +23105,7 @@ type Team = MemberStatusable & Node & Subscribable & {
|
|
|
22865
23105
|
editTeamResourcePath: Scalars['URI']['output'];
|
|
22866
23106
|
/** The HTTP URL for editing this team */
|
|
22867
23107
|
editTeamUrl: Scalars['URI']['output'];
|
|
23108
|
+
/** The Node ID of this object */
|
|
22868
23109
|
id: Scalars['ID']['output'];
|
|
22869
23110
|
/** A list of pending invitations for users to this team */
|
|
22870
23111
|
invitations?: Maybe<OrganizationInvitationConnection>;
|
|
@@ -23021,6 +23262,7 @@ type TeamAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
23021
23262
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23022
23263
|
/** The time the action was initiated */
|
|
23023
23264
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23265
|
+
/** The Node ID of this object */
|
|
23024
23266
|
id: Scalars['ID']['output'];
|
|
23025
23267
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23026
23268
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23070,6 +23312,7 @@ type TeamAddRepositoryAuditEntry = AuditEntry & Node & OrganizationAuditEntryDat
|
|
|
23070
23312
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23071
23313
|
/** The time the action was initiated */
|
|
23072
23314
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23315
|
+
/** The Node ID of this object */
|
|
23073
23316
|
id: Scalars['ID']['output'];
|
|
23074
23317
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23075
23318
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23138,6 +23381,7 @@ type TeamChangeParentTeamAuditEntry = AuditEntry & Node & OrganizationAuditEntry
|
|
|
23138
23381
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23139
23382
|
/** The time the action was initiated */
|
|
23140
23383
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23384
|
+
/** The Node ID of this object */
|
|
23141
23385
|
id: Scalars['ID']['output'];
|
|
23142
23386
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23143
23387
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23240,6 +23484,7 @@ type TeamDiscussion = Comment & Deletable & Node & Reactable & Subscribable & Un
|
|
|
23240
23484
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
23241
23485
|
/** The actor who edited the comment. */
|
|
23242
23486
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
23487
|
+
/** The Node ID of this object */
|
|
23243
23488
|
id: Scalars['ID']['output'];
|
|
23244
23489
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
23245
23490
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -23369,6 +23614,7 @@ type TeamDiscussionComment = Comment & Deletable & Node & Reactable & UniformRes
|
|
|
23369
23614
|
discussion: TeamDiscussion;
|
|
23370
23615
|
/** The actor who edited the comment. */
|
|
23371
23616
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
23617
|
+
/** The Node ID of this object */
|
|
23372
23618
|
id: Scalars['ID']['output'];
|
|
23373
23619
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
23374
23620
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -23590,6 +23836,7 @@ type TeamRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
23590
23836
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23591
23837
|
/** The time the action was initiated */
|
|
23592
23838
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23839
|
+
/** The Node ID of this object */
|
|
23593
23840
|
id: Scalars['ID']['output'];
|
|
23594
23841
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23595
23842
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23639,6 +23886,7 @@ type TeamRemoveRepositoryAuditEntry = AuditEntry & Node & OrganizationAuditEntry
|
|
|
23639
23886
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23640
23887
|
/** The time the action was initiated */
|
|
23641
23888
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23889
|
+
/** The Node ID of this object */
|
|
23642
23890
|
id: Scalars['ID']['output'];
|
|
23643
23891
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23644
23892
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23776,6 +24024,7 @@ type ThreadSubscriptionState =
|
|
|
23776
24024
|
/** A topic aggregates entities that are related to a subject. */
|
|
23777
24025
|
type Topic = Node & Starrable & {
|
|
23778
24026
|
__typename?: 'Topic';
|
|
24027
|
+
/** The Node ID of this object */
|
|
23779
24028
|
id: Scalars['ID']['output'];
|
|
23780
24029
|
/** The topic's name. */
|
|
23781
24030
|
name: Scalars['String']['output'];
|
|
@@ -23887,6 +24136,7 @@ type TransferredEvent = Node & {
|
|
|
23887
24136
|
createdAt: Scalars['DateTime']['output'];
|
|
23888
24137
|
/** The repository this came from */
|
|
23889
24138
|
fromRepository?: Maybe<Repository>;
|
|
24139
|
+
/** The Node ID of this object */
|
|
23890
24140
|
id: Scalars['ID']['output'];
|
|
23891
24141
|
/** Identifies the issue associated with the event. */
|
|
23892
24142
|
issue: Issue;
|
|
@@ -23902,6 +24152,7 @@ type Tree = GitObject & Node & {
|
|
|
23902
24152
|
commitUrl: Scalars['URI']['output'];
|
|
23903
24153
|
/** A list of tree entries. */
|
|
23904
24154
|
entries?: Maybe<Array<TreeEntry>>;
|
|
24155
|
+
/** The Node ID of this object */
|
|
23905
24156
|
id: Scalars['ID']['output'];
|
|
23906
24157
|
/** The Git object ID */
|
|
23907
24158
|
oid: Scalars['GitObjectID']['output'];
|
|
@@ -23985,6 +24236,7 @@ type UnassignedEvent = Node & {
|
|
|
23985
24236
|
assignee?: Maybe<Assignee>;
|
|
23986
24237
|
/** Identifies the date and time when the object was created. */
|
|
23987
24238
|
createdAt: Scalars['DateTime']['output'];
|
|
24239
|
+
/** The Node ID of this object */
|
|
23988
24240
|
id: Scalars['ID']['output'];
|
|
23989
24241
|
/**
|
|
23990
24242
|
* Identifies the subject (user) who was unassigned.
|
|
@@ -24057,6 +24309,7 @@ type UnlabeledEvent = Node & {
|
|
|
24057
24309
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24058
24310
|
/** Identifies the date and time when the object was created. */
|
|
24059
24311
|
createdAt: Scalars['DateTime']['output'];
|
|
24312
|
+
/** The Node ID of this object */
|
|
24060
24313
|
id: Scalars['ID']['output'];
|
|
24061
24314
|
/** Identifies the label associated with the 'unlabeled' event. */
|
|
24062
24315
|
label: Label;
|
|
@@ -24140,6 +24393,7 @@ type UnlockedEvent = Node & {
|
|
|
24140
24393
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24141
24394
|
/** Identifies the date and time when the object was created. */
|
|
24142
24395
|
createdAt: Scalars['DateTime']['output'];
|
|
24396
|
+
/** The Node ID of this object */
|
|
24143
24397
|
id: Scalars['ID']['output'];
|
|
24144
24398
|
/** Object that was unlocked. */
|
|
24145
24399
|
lockable: Discussion | Issue | PullRequest;
|
|
@@ -24219,6 +24473,7 @@ type UnmarkedAsDuplicateEvent = Node & {
|
|
|
24219
24473
|
createdAt: Scalars['DateTime']['output'];
|
|
24220
24474
|
/** The issue or pull request which has been marked as a duplicate of another. */
|
|
24221
24475
|
duplicate?: Maybe<IssueOrPullRequest>;
|
|
24476
|
+
/** The Node ID of this object */
|
|
24222
24477
|
id: Scalars['ID']['output'];
|
|
24223
24478
|
/** Canonical and duplicate belong to different repositories. */
|
|
24224
24479
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -24260,6 +24515,7 @@ type UnpinnedEvent = Node & {
|
|
|
24260
24515
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24261
24516
|
/** Identifies the date and time when the object was created. */
|
|
24262
24517
|
createdAt: Scalars['DateTime']['output'];
|
|
24518
|
+
/** The Node ID of this object */
|
|
24263
24519
|
id: Scalars['ID']['output'];
|
|
24264
24520
|
/** Identifies the issue associated with the event. */
|
|
24265
24521
|
issue: Issue;
|
|
@@ -24279,6 +24535,21 @@ type UnresolveReviewThreadPayload = {
|
|
|
24279
24535
|
/** The thread to resolve. */
|
|
24280
24536
|
thread?: Maybe<PullRequestReviewThread>;
|
|
24281
24537
|
};
|
|
24538
|
+
/** Autogenerated input type of UnsubscribeFromNotifications */
|
|
24539
|
+
type UnsubscribeFromNotificationsInput = {
|
|
24540
|
+
/** A unique identifier for the client performing the mutation. */
|
|
24541
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
24542
|
+
/** The NotificationThread IDs of the objects to unsubscribe from. */
|
|
24543
|
+
ids: Array<Scalars['ID']['input']>;
|
|
24544
|
+
};
|
|
24545
|
+
/** Autogenerated return type of UnsubscribeFromNotifications */
|
|
24546
|
+
type UnsubscribeFromNotificationsPayload = {
|
|
24547
|
+
__typename?: 'UnsubscribeFromNotificationsPayload';
|
|
24548
|
+
/** A unique identifier for the client performing the mutation. */
|
|
24549
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
24550
|
+
/** Did the operation succeed? */
|
|
24551
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
24552
|
+
};
|
|
24282
24553
|
/** Represents an 'unsubscribed' event on a given `Subscribable`. */
|
|
24283
24554
|
type UnsubscribedEvent = Node & {
|
|
24284
24555
|
__typename?: 'UnsubscribedEvent';
|
|
@@ -24286,6 +24557,7 @@ type UnsubscribedEvent = Node & {
|
|
|
24286
24557
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24287
24558
|
/** Identifies the date and time when the object was created. */
|
|
24288
24559
|
createdAt: Scalars['DateTime']['output'];
|
|
24560
|
+
/** The Node ID of this object */
|
|
24289
24561
|
id: Scalars['ID']['output'];
|
|
24290
24562
|
/** Object referenced by event. */
|
|
24291
24563
|
subscribable: Commit | Discussion | Issue | PullRequest | Repository | Team | TeamDiscussion;
|
|
@@ -25562,6 +25834,7 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
|
|
|
25562
25834
|
hasSponsorsListing: Scalars['Boolean']['output'];
|
|
25563
25835
|
/** The hovercard information for this user in a given context */
|
|
25564
25836
|
hovercard: Hovercard;
|
|
25837
|
+
/** The Node ID of this object */
|
|
25565
25838
|
id: Scalars['ID']['output'];
|
|
25566
25839
|
/** The interaction ability settings for this user. */
|
|
25567
25840
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
@@ -26091,6 +26364,7 @@ type UserBlockedEvent = Node & {
|
|
|
26091
26364
|
blockDuration: UserBlockDuration;
|
|
26092
26365
|
/** Identifies the date and time when the object was created. */
|
|
26093
26366
|
createdAt: Scalars['DateTime']['output'];
|
|
26367
|
+
/** The Node ID of this object */
|
|
26094
26368
|
id: Scalars['ID']['output'];
|
|
26095
26369
|
/** The user who was blocked. */
|
|
26096
26370
|
subject?: Maybe<User>;
|
|
@@ -26122,6 +26396,7 @@ type UserContentEdit = Node & {
|
|
|
26122
26396
|
editedAt: Scalars['DateTime']['output'];
|
|
26123
26397
|
/** The actor who edited this content */
|
|
26124
26398
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
26399
|
+
/** The Node ID of this object */
|
|
26125
26400
|
id: Scalars['ID']['output'];
|
|
26126
26401
|
/** Identifies the date and time when the object was last updated. */
|
|
26127
26402
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -26175,6 +26450,7 @@ type UserStatus = Node & {
|
|
|
26175
26450
|
emojiHTML?: Maybe<Scalars['HTML']['output']>;
|
|
26176
26451
|
/** If set, the status will not be shown after this date. */
|
|
26177
26452
|
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
26453
|
+
/** The Node ID of this object */
|
|
26178
26454
|
id: Scalars['ID']['output'];
|
|
26179
26455
|
/** Whether this status indicates the user is not fully available on GitHub. */
|
|
26180
26456
|
indicatesLimitedAvailability: Scalars['Boolean']['output'];
|
|
@@ -26233,6 +26509,7 @@ type VerifiableDomain = Node & {
|
|
|
26233
26509
|
hasFoundHostName: Scalars['Boolean']['output'];
|
|
26234
26510
|
/** Whether a TXT record for verification with the expected verification token was found. */
|
|
26235
26511
|
hasFoundVerificationToken: Scalars['Boolean']['output'];
|
|
26512
|
+
/** The Node ID of this object */
|
|
26236
26513
|
id: Scalars['ID']['output'];
|
|
26237
26514
|
/** Whether or not the domain is approved. */
|
|
26238
26515
|
isApproved: Scalars['Boolean']['output'];
|
|
@@ -26327,6 +26604,7 @@ type Workflow = Node & UniformResourceLocatable & {
|
|
|
26327
26604
|
createdAt: Scalars['DateTime']['output'];
|
|
26328
26605
|
/** Identifies the primary key from the database. */
|
|
26329
26606
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
26607
|
+
/** The Node ID of this object */
|
|
26330
26608
|
id: Scalars['ID']['output'];
|
|
26331
26609
|
/** The name of the workflow. */
|
|
26332
26610
|
name: Scalars['String']['output'];
|
|
@@ -26387,6 +26665,7 @@ type WorkflowRun = Node & UniformResourceLocatable & {
|
|
|
26387
26665
|
event: Scalars['String']['output'];
|
|
26388
26666
|
/** The workflow file */
|
|
26389
26667
|
file?: Maybe<WorkflowRunFile>;
|
|
26668
|
+
/** The Node ID of this object */
|
|
26390
26669
|
id: Scalars['ID']['output'];
|
|
26391
26670
|
/** The pending deployment requests of all check runs in this workflow run */
|
|
26392
26671
|
pendingDeploymentRequests: DeploymentRequestConnection;
|
|
@@ -26438,6 +26717,7 @@ type WorkflowRunEdge = {
|
|
|
26438
26717
|
/** An executed workflow file for a workflow run. */
|
|
26439
26718
|
type WorkflowRunFile = Node & UniformResourceLocatable & {
|
|
26440
26719
|
__typename?: 'WorkflowRunFile';
|
|
26720
|
+
/** The Node ID of this object */
|
|
26441
26721
|
id: Scalars['ID']['output'];
|
|
26442
26722
|
/** The path of the workflow file relative to its repository. */
|
|
26443
26723
|
path: Scalars['String']['output'];
|
|
@@ -26491,4 +26771,4 @@ type WorkflowsParametersInput = {
|
|
|
26491
26771
|
workflows: Array<WorkflowFileReferenceInput>;
|
|
26492
26772
|
};
|
|
26493
26773
|
|
|
26494
|
-
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, 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, 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, MutationDeclineTopicSuggestionArgs, MutationDeleteBranchProtectionRuleArgs, MutationDeleteDeploymentArgs, MutationDeleteDiscussionArgs, MutationDeleteDiscussionCommentArgs, MutationDeleteEnvironmentArgs, MutationDeleteIpAllowListEntryArgs, MutationDeleteIssueArgs, MutationDeleteIssueCommentArgs, MutationDeleteLinkedBranchArgs, MutationDeleteProjectArgs, MutationDeleteProjectCardArgs, MutationDeleteProjectColumnArgs, MutationDeleteProjectV2Args, MutationDeleteProjectV2FieldArgs, MutationDeleteProjectV2ItemArgs, MutationDeleteProjectV2WorkflowArgs, MutationDeletePullRequestReviewArgs, MutationDeletePullRequestReviewCommentArgs, MutationDeleteRefArgs, MutationDeleteRepositoryRulesetArgs, MutationDeleteTeamDiscussionArgs, MutationDeleteTeamDiscussionCommentArgs, 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, 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, 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, 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, User, UserAnyPinnableItemsArgs, UserAvatarUrlArgs, UserBlockDuration, UserBlockedEvent, UserCanReceiveOrganizationEmailsWhenNotificationsRestrictedArgs, UserCommitCommentsArgs, UserConnection, UserContentEdit, UserContentEditConnection, UserContentEditEdge, UserContributionsCollectionArgs, UserEdge, UserEmailMetadata, UserEnterprisesArgs, UserFollowersArgs, UserFollowingArgs, UserGistArgs, UserGistCommentsArgs, UserGistsArgs, UserHovercardArgs, UserIsSponsoredByArgs, UserIssueCommentsArgs, UserIssuesArgs, 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 };
|
|
26774
|
+
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, 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, 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, MutationDeclineTopicSuggestionArgs, MutationDeleteBranchProtectionRuleArgs, MutationDeleteDeploymentArgs, MutationDeleteDiscussionArgs, MutationDeleteDiscussionCommentArgs, MutationDeleteEnvironmentArgs, MutationDeleteIpAllowListEntryArgs, MutationDeleteIssueArgs, MutationDeleteIssueCommentArgs, MutationDeleteLinkedBranchArgs, MutationDeleteProjectArgs, MutationDeleteProjectCardArgs, MutationDeleteProjectColumnArgs, MutationDeleteProjectV2Args, MutationDeleteProjectV2FieldArgs, MutationDeleteProjectV2ItemArgs, MutationDeleteProjectV2WorkflowArgs, MutationDeletePullRequestReviewArgs, MutationDeletePullRequestReviewCommentArgs, MutationDeleteRefArgs, MutationDeleteRepositoryRulesetArgs, MutationDeleteTeamDiscussionArgs, MutationDeleteTeamDiscussionCommentArgs, 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, 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, User, UserAnyPinnableItemsArgs, UserAvatarUrlArgs, UserBlockDuration, UserBlockedEvent, UserCanReceiveOrganizationEmailsWhenNotificationsRestrictedArgs, UserCommitCommentsArgs, UserConnection, UserContentEdit, UserContentEditConnection, UserContentEditEdge, UserContributionsCollectionArgs, UserEdge, UserEmailMetadata, UserEnterprisesArgs, UserFollowersArgs, UserFollowingArgs, UserGistArgs, UserGistCommentsArgs, UserGistsArgs, UserHovercardArgs, UserIsSponsoredByArgs, UserIssueCommentsArgs, UserIssuesArgs, 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 };
|