github-schema 1.2.4 → 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 +252 -0
- package/dist/github-schema.d.ts +252 -0
- package/github-schema.graphql +990 -0
- 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. */
|
|
@@ -11076,6 +11167,7 @@ type OidcProvider = Node & {
|
|
|
11076
11167
|
enterprise?: Maybe<Enterprise>;
|
|
11077
11168
|
/** ExternalIdentities provisioned by this identity provider. */
|
|
11078
11169
|
externalIdentities: ExternalIdentityConnection;
|
|
11170
|
+
/** The Node ID of this object */
|
|
11079
11171
|
id: Scalars['ID']['output'];
|
|
11080
11172
|
/** The OIDC identity provider type */
|
|
11081
11173
|
providerType: OidcProviderType;
|
|
@@ -11132,6 +11224,7 @@ type OauthApplicationCreateAuditEntry = AuditEntry & Node & OauthApplicationAudi
|
|
|
11132
11224
|
callbackUrl?: Maybe<Scalars['URI']['output']>;
|
|
11133
11225
|
/** The time the action was initiated */
|
|
11134
11226
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11227
|
+
/** The Node ID of this object */
|
|
11135
11228
|
id: Scalars['ID']['output'];
|
|
11136
11229
|
/** The name of the OAuth application. */
|
|
11137
11230
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11211,6 +11304,7 @@ type OrgAddBillingManagerAuditEntry = AuditEntry & Node & OrganizationAuditEntry
|
|
|
11211
11304
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11212
11305
|
/** The time the action was initiated */
|
|
11213
11306
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11307
|
+
/** The Node ID of this object */
|
|
11214
11308
|
id: Scalars['ID']['output'];
|
|
11215
11309
|
/** The email address used to invite a billing manager for the organization. */
|
|
11216
11310
|
invitationEmail?: Maybe<Scalars['String']['output']>;
|
|
@@ -11252,6 +11346,7 @@ type OrgAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
|
|
|
11252
11346
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11253
11347
|
/** The time the action was initiated */
|
|
11254
11348
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11349
|
+
/** The Node ID of this object */
|
|
11255
11350
|
id: Scalars['ID']['output'];
|
|
11256
11351
|
/** The corresponding operation type for the action */
|
|
11257
11352
|
operationType?: Maybe<OperationType>;
|
|
@@ -11307,6 +11402,7 @@ type OrgBlockUserAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
|
|
|
11307
11402
|
blockedUserUrl?: Maybe<Scalars['URI']['output']>;
|
|
11308
11403
|
/** The time the action was initiated */
|
|
11309
11404
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11405
|
+
/** The Node ID of this object */
|
|
11310
11406
|
id: Scalars['ID']['output'];
|
|
11311
11407
|
/** The corresponding operation type for the action */
|
|
11312
11408
|
operationType?: Maybe<OperationType>;
|
|
@@ -11346,6 +11442,7 @@ type OrgConfigDisableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizat
|
|
|
11346
11442
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11347
11443
|
/** The time the action was initiated */
|
|
11348
11444
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11445
|
+
/** The Node ID of this object */
|
|
11349
11446
|
id: Scalars['ID']['output'];
|
|
11350
11447
|
/** The corresponding operation type for the action */
|
|
11351
11448
|
operationType?: Maybe<OperationType>;
|
|
@@ -11385,6 +11482,7 @@ type OrgConfigEnableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizati
|
|
|
11385
11482
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11386
11483
|
/** The time the action was initiated */
|
|
11387
11484
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11485
|
+
/** The Node ID of this object */
|
|
11388
11486
|
id: Scalars['ID']['output'];
|
|
11389
11487
|
/** The corresponding operation type for the action */
|
|
11390
11488
|
operationType?: Maybe<OperationType>;
|
|
@@ -11426,6 +11524,7 @@ type OrgCreateAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & {
|
|
|
11426
11524
|
billingPlan?: Maybe<OrgCreateAuditEntryBillingPlan>;
|
|
11427
11525
|
/** The time the action was initiated */
|
|
11428
11526
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11527
|
+
/** The Node ID of this object */
|
|
11429
11528
|
id: Scalars['ID']['output'];
|
|
11430
11529
|
/** The corresponding operation type for the action */
|
|
11431
11530
|
operationType?: Maybe<OperationType>;
|
|
@@ -11477,6 +11576,7 @@ type OrgDisableOauthAppRestrictionsAuditEntry = AuditEntry & Node & Organization
|
|
|
11477
11576
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11478
11577
|
/** The time the action was initiated */
|
|
11479
11578
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11579
|
+
/** The Node ID of this object */
|
|
11480
11580
|
id: Scalars['ID']['output'];
|
|
11481
11581
|
/** The corresponding operation type for the action */
|
|
11482
11582
|
operationType?: Maybe<OperationType>;
|
|
@@ -11518,6 +11618,7 @@ type OrgDisableSamlAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
11518
11618
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11519
11619
|
/** The SAML provider's digest algorithm URL. */
|
|
11520
11620
|
digestMethodUrl?: Maybe<Scalars['URI']['output']>;
|
|
11621
|
+
/** The Node ID of this object */
|
|
11521
11622
|
id: Scalars['ID']['output'];
|
|
11522
11623
|
/** The SAML provider's issuer URL. */
|
|
11523
11624
|
issuerUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -11563,6 +11664,7 @@ type OrgDisableTwoFactorRequirementAuditEntry = AuditEntry & Node & Organization
|
|
|
11563
11664
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11564
11665
|
/** The time the action was initiated */
|
|
11565
11666
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11667
|
+
/** The Node ID of this object */
|
|
11566
11668
|
id: Scalars['ID']['output'];
|
|
11567
11669
|
/** The corresponding operation type for the action */
|
|
11568
11670
|
operationType?: Maybe<OperationType>;
|
|
@@ -11602,6 +11704,7 @@ type OrgEnableOauthAppRestrictionsAuditEntry = AuditEntry & Node & OrganizationA
|
|
|
11602
11704
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11603
11705
|
/** The time the action was initiated */
|
|
11604
11706
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11707
|
+
/** The Node ID of this object */
|
|
11605
11708
|
id: Scalars['ID']['output'];
|
|
11606
11709
|
/** The corresponding operation type for the action */
|
|
11607
11710
|
operationType?: Maybe<OperationType>;
|
|
@@ -11643,6 +11746,7 @@ type OrgEnableSamlAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
11643
11746
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11644
11747
|
/** The SAML provider's digest algorithm URL. */
|
|
11645
11748
|
digestMethodUrl?: Maybe<Scalars['URI']['output']>;
|
|
11749
|
+
/** The Node ID of this object */
|
|
11646
11750
|
id: Scalars['ID']['output'];
|
|
11647
11751
|
/** The SAML provider's issuer URL. */
|
|
11648
11752
|
issuerUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -11688,6 +11792,7 @@ type OrgEnableTwoFactorRequirementAuditEntry = AuditEntry & Node & OrganizationA
|
|
|
11688
11792
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11689
11793
|
/** The time the action was initiated */
|
|
11690
11794
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11795
|
+
/** The Node ID of this object */
|
|
11691
11796
|
id: Scalars['ID']['output'];
|
|
11692
11797
|
/** The corresponding operation type for the action */
|
|
11693
11798
|
operationType?: Maybe<OperationType>;
|
|
@@ -11740,6 +11845,7 @@ type OrgInviteMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
11740
11845
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11741
11846
|
/** The email address of the organization invitation. */
|
|
11742
11847
|
email?: Maybe<Scalars['String']['output']>;
|
|
11848
|
+
/** The Node ID of this object */
|
|
11743
11849
|
id: Scalars['ID']['output'];
|
|
11744
11850
|
/** The corresponding operation type for the action */
|
|
11745
11851
|
operationType?: Maybe<OperationType>;
|
|
@@ -11787,6 +11893,7 @@ type OrgInviteToBusinessAuditEntry = AuditEntry & EnterpriseAuditEntryData & Nod
|
|
|
11787
11893
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
11788
11894
|
/** The HTTP URL for this enterprise. */
|
|
11789
11895
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
11896
|
+
/** The Node ID of this object */
|
|
11790
11897
|
id: Scalars['ID']['output'];
|
|
11791
11898
|
/** The corresponding operation type for the action */
|
|
11792
11899
|
operationType?: Maybe<OperationType>;
|
|
@@ -11826,6 +11933,7 @@ type OrgOauthAppAccessApprovedAuditEntry = AuditEntry & Node & OauthApplicationA
|
|
|
11826
11933
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11827
11934
|
/** The time the action was initiated */
|
|
11828
11935
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11936
|
+
/** The Node ID of this object */
|
|
11829
11937
|
id: Scalars['ID']['output'];
|
|
11830
11938
|
/** The name of the OAuth application. */
|
|
11831
11939
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11871,6 +11979,7 @@ type OrgOauthAppAccessBlockedAuditEntry = AuditEntry & Node & OauthApplicationAu
|
|
|
11871
11979
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11872
11980
|
/** The time the action was initiated */
|
|
11873
11981
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
11982
|
+
/** The Node ID of this object */
|
|
11874
11983
|
id: Scalars['ID']['output'];
|
|
11875
11984
|
/** The name of the OAuth application. */
|
|
11876
11985
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11916,6 +12025,7 @@ type OrgOauthAppAccessDeniedAuditEntry = AuditEntry & Node & OauthApplicationAud
|
|
|
11916
12025
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11917
12026
|
/** The time the action was initiated */
|
|
11918
12027
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12028
|
+
/** The Node ID of this object */
|
|
11919
12029
|
id: Scalars['ID']['output'];
|
|
11920
12030
|
/** The name of the OAuth application. */
|
|
11921
12031
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -11961,6 +12071,7 @@ type OrgOauthAppAccessRequestedAuditEntry = AuditEntry & Node & OauthApplication
|
|
|
11961
12071
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
11962
12072
|
/** The time the action was initiated */
|
|
11963
12073
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12074
|
+
/** The Node ID of this object */
|
|
11964
12075
|
id: Scalars['ID']['output'];
|
|
11965
12076
|
/** The name of the OAuth application. */
|
|
11966
12077
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -12006,6 +12117,7 @@ type OrgOauthAppAccessUnblockedAuditEntry = AuditEntry & Node & OauthApplication
|
|
|
12006
12117
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12007
12118
|
/** The time the action was initiated */
|
|
12008
12119
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12120
|
+
/** The Node ID of this object */
|
|
12009
12121
|
id: Scalars['ID']['output'];
|
|
12010
12122
|
/** The name of the OAuth application. */
|
|
12011
12123
|
oauthApplicationName?: Maybe<Scalars['String']['output']>;
|
|
@@ -12051,6 +12163,7 @@ type OrgRemoveBillingManagerAuditEntry = AuditEntry & Node & OrganizationAuditEn
|
|
|
12051
12163
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12052
12164
|
/** The time the action was initiated */
|
|
12053
12165
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12166
|
+
/** The Node ID of this object */
|
|
12054
12167
|
id: Scalars['ID']['output'];
|
|
12055
12168
|
/** The corresponding operation type for the action */
|
|
12056
12169
|
operationType?: Maybe<OperationType>;
|
|
@@ -12100,6 +12213,7 @@ type OrgRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
12100
12213
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12101
12214
|
/** The time the action was initiated */
|
|
12102
12215
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12216
|
+
/** The Node ID of this object */
|
|
12103
12217
|
id: Scalars['ID']['output'];
|
|
12104
12218
|
/** The types of membership the member has with the organization. */
|
|
12105
12219
|
membershipTypes?: Maybe<Array<OrgRemoveMemberAuditEntryMembershipType>>;
|
|
@@ -12181,6 +12295,7 @@ type OrgRemoveOutsideCollaboratorAuditEntry = AuditEntry & Node & OrganizationAu
|
|
|
12181
12295
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12182
12296
|
/** The time the action was initiated */
|
|
12183
12297
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12298
|
+
/** The Node ID of this object */
|
|
12184
12299
|
id: Scalars['ID']['output'];
|
|
12185
12300
|
/** The types of membership the outside collaborator has with the organization. */
|
|
12186
12301
|
membershipTypes?: Maybe<Array<OrgRemoveOutsideCollaboratorAuditEntryMembershipType>>;
|
|
@@ -12245,6 +12360,7 @@ type OrgRestoreMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
12245
12360
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12246
12361
|
/** The time the action was initiated */
|
|
12247
12362
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12363
|
+
/** The Node ID of this object */
|
|
12248
12364
|
id: Scalars['ID']['output'];
|
|
12249
12365
|
/** The corresponding operation type for the action */
|
|
12250
12366
|
operationType?: Maybe<OperationType>;
|
|
@@ -12344,6 +12460,7 @@ type OrgUnblockUserAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
12344
12460
|
blockedUserUrl?: Maybe<Scalars['URI']['output']>;
|
|
12345
12461
|
/** The time the action was initiated */
|
|
12346
12462
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12463
|
+
/** The Node ID of this object */
|
|
12347
12464
|
id: Scalars['ID']['output'];
|
|
12348
12465
|
/** The corresponding operation type for the action */
|
|
12349
12466
|
operationType?: Maybe<OperationType>;
|
|
@@ -12383,6 +12500,7 @@ type OrgUpdateDefaultRepositoryPermissionAuditEntry = AuditEntry & Node & Organi
|
|
|
12383
12500
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12384
12501
|
/** The time the action was initiated */
|
|
12385
12502
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12503
|
+
/** The Node ID of this object */
|
|
12386
12504
|
id: Scalars['ID']['output'];
|
|
12387
12505
|
/** The corresponding operation type for the action */
|
|
12388
12506
|
operationType?: Maybe<OperationType>;
|
|
@@ -12436,6 +12554,7 @@ type OrgUpdateMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
12436
12554
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
12437
12555
|
/** The time the action was initiated */
|
|
12438
12556
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12557
|
+
/** The Node ID of this object */
|
|
12439
12558
|
id: Scalars['ID']['output'];
|
|
12440
12559
|
/** The corresponding operation type for the action */
|
|
12441
12560
|
operationType?: Maybe<OperationType>;
|
|
@@ -12487,6 +12606,7 @@ type OrgUpdateMemberRepositoryCreationPermissionAuditEntry = AuditEntry & Node &
|
|
|
12487
12606
|
canCreateRepositories?: Maybe<Scalars['Boolean']['output']>;
|
|
12488
12607
|
/** The time the action was initiated */
|
|
12489
12608
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12609
|
+
/** The Node ID of this object */
|
|
12490
12610
|
id: Scalars['ID']['output'];
|
|
12491
12611
|
/** The corresponding operation type for the action */
|
|
12492
12612
|
operationType?: Maybe<OperationType>;
|
|
@@ -12548,6 +12668,7 @@ type OrgUpdateMemberRepositoryInvitationPermissionAuditEntry = AuditEntry & Node
|
|
|
12548
12668
|
canInviteOutsideCollaboratorsToRepositories?: Maybe<Scalars['Boolean']['output']>;
|
|
12549
12669
|
/** The time the action was initiated */
|
|
12550
12670
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
12671
|
+
/** The Node ID of this object */
|
|
12551
12672
|
id: Scalars['ID']['output'];
|
|
12552
12673
|
/** The corresponding operation type for the action */
|
|
12553
12674
|
operationType?: Maybe<OperationType>;
|
|
@@ -12603,6 +12724,7 @@ type Organization = Actor & AnnouncementBanner & MemberStatusable & Node & Packa
|
|
|
12603
12724
|
estimatedNextSponsorsPayoutInCents: Scalars['Int']['output'];
|
|
12604
12725
|
/** True if this user/organization has a GitHub Sponsors listing. */
|
|
12605
12726
|
hasSponsorsListing: Scalars['Boolean']['output'];
|
|
12727
|
+
/** The Node ID of this object */
|
|
12606
12728
|
id: Scalars['ID']['output'];
|
|
12607
12729
|
/** The interaction ability settings for this organization. */
|
|
12608
12730
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
@@ -13142,6 +13264,7 @@ type OrganizationIdentityProvider = Node & {
|
|
|
13142
13264
|
digestMethod?: Maybe<Scalars['URI']['output']>;
|
|
13143
13265
|
/** External Identities provisioned by this Identity Provider */
|
|
13144
13266
|
externalIdentities: ExternalIdentityConnection;
|
|
13267
|
+
/** The Node ID of this object */
|
|
13145
13268
|
id: Scalars['ID']['output'];
|
|
13146
13269
|
/** The x509 certificate used by the Identity Provider to sign assertions and responses. */
|
|
13147
13270
|
idpCertificate?: Maybe<Scalars['X509Certificate']['output']>;
|
|
@@ -13176,6 +13299,7 @@ type OrganizationInvitation = Node & {
|
|
|
13176
13299
|
createdAt: Scalars['DateTime']['output'];
|
|
13177
13300
|
/** The email address of the user invited to the organization. */
|
|
13178
13301
|
email?: Maybe<Scalars['String']['output']>;
|
|
13302
|
+
/** The Node ID of this object */
|
|
13179
13303
|
id: Scalars['ID']['output'];
|
|
13180
13304
|
/** The source of the invitation. */
|
|
13181
13305
|
invitationSource: OrganizationInvitationSource;
|
|
@@ -13283,6 +13407,7 @@ type OrganizationMigration = Node & {
|
|
|
13283
13407
|
databaseId?: Maybe<Scalars['String']['output']>;
|
|
13284
13408
|
/** The reason the organization migration failed. */
|
|
13285
13409
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
13410
|
+
/** The Node ID of this object */
|
|
13286
13411
|
id: Scalars['ID']['output'];
|
|
13287
13412
|
/** The remaining amount of repos to be migrated. */
|
|
13288
13413
|
remainingRepositoriesCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13380,6 +13505,7 @@ type OrganizationsHovercardContextRelevantOrganizationsArgs = {
|
|
|
13380
13505
|
/** Information for an uploaded package. */
|
|
13381
13506
|
type Package = Node & {
|
|
13382
13507
|
__typename?: 'Package';
|
|
13508
|
+
/** The Node ID of this object */
|
|
13383
13509
|
id: Scalars['ID']['output'];
|
|
13384
13510
|
/** Find the latest version for the package. */
|
|
13385
13511
|
latestVersion?: Maybe<PackageVersion>;
|
|
@@ -13431,6 +13557,7 @@ type PackageEdge = {
|
|
|
13431
13557
|
/** A file in a package version. */
|
|
13432
13558
|
type PackageFile = Node & {
|
|
13433
13559
|
__typename?: 'PackageFile';
|
|
13560
|
+
/** The Node ID of this object */
|
|
13434
13561
|
id: Scalars['ID']['output'];
|
|
13435
13562
|
/** MD5 hash of the file. */
|
|
13436
13563
|
md5?: Maybe<Scalars['String']['output']>;
|
|
@@ -13493,6 +13620,7 @@ type PackageOrderField =
|
|
|
13493
13620
|
'CREATED_AT';
|
|
13494
13621
|
/** Represents an owner of a package. */
|
|
13495
13622
|
type PackageOwner = {
|
|
13623
|
+
/** The Node ID of the PackageOwner object */
|
|
13496
13624
|
id: Scalars['ID']['output'];
|
|
13497
13625
|
/** A list of packages under the owner. */
|
|
13498
13626
|
packages: PackageConnection;
|
|
@@ -13517,6 +13645,7 @@ type PackageStatistics = {
|
|
|
13517
13645
|
/** A version tag contains the mapping between a tag name and a version. */
|
|
13518
13646
|
type PackageTag = Node & {
|
|
13519
13647
|
__typename?: 'PackageTag';
|
|
13648
|
+
/** The Node ID of this object */
|
|
13520
13649
|
id: Scalars['ID']['output'];
|
|
13521
13650
|
/** Identifies the tag name of the version. */
|
|
13522
13651
|
name: Scalars['String']['output'];
|
|
@@ -13544,6 +13673,7 @@ type PackageVersion = Node & {
|
|
|
13544
13673
|
__typename?: 'PackageVersion';
|
|
13545
13674
|
/** List of files associated with this package version */
|
|
13546
13675
|
files: PackageFileConnection;
|
|
13676
|
+
/** The Node ID of this object */
|
|
13547
13677
|
id: Scalars['ID']['output'];
|
|
13548
13678
|
/** The package associated with this version. */
|
|
13549
13679
|
package?: Maybe<Package>;
|
|
@@ -13713,6 +13843,7 @@ type PinnedDiscussion = Node & RepositoryNode & {
|
|
|
13713
13843
|
discussion: Discussion;
|
|
13714
13844
|
/** Color stops of the chosen gradient */
|
|
13715
13845
|
gradientStopColors: Array<Scalars['String']['output']>;
|
|
13846
|
+
/** The Node ID of this object */
|
|
13716
13847
|
id: Scalars['ID']['output'];
|
|
13717
13848
|
/** Background texture pattern */
|
|
13718
13849
|
pattern: PinnedDiscussionPattern;
|
|
@@ -13778,6 +13909,7 @@ type PinnedEvent = Node & {
|
|
|
13778
13909
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
13779
13910
|
/** Identifies the date and time when the object was created. */
|
|
13780
13911
|
createdAt: Scalars['DateTime']['output'];
|
|
13912
|
+
/** The Node ID of this object */
|
|
13781
13913
|
id: Scalars['ID']['output'];
|
|
13782
13914
|
/** Identifies the issue associated with the event. */
|
|
13783
13915
|
issue: Issue;
|
|
@@ -13789,6 +13921,7 @@ type PinnedIssue = Node & {
|
|
|
13789
13921
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
13790
13922
|
/** Identifies the primary key from the database as a BigInt. */
|
|
13791
13923
|
fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
|
|
13924
|
+
/** The Node ID of this object */
|
|
13792
13925
|
id: Scalars['ID']['output'];
|
|
13793
13926
|
/** The issue that was pinned. */
|
|
13794
13927
|
issue: Issue;
|
|
@@ -13842,6 +13975,7 @@ type PrivateRepositoryForkingDisableAuditEntry = AuditEntry & EnterpriseAuditEnt
|
|
|
13842
13975
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
13843
13976
|
/** The HTTP URL for this enterprise. */
|
|
13844
13977
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
13978
|
+
/** The Node ID of this object */
|
|
13845
13979
|
id: Scalars['ID']['output'];
|
|
13846
13980
|
/** The corresponding operation type for the action */
|
|
13847
13981
|
operationType?: Maybe<OperationType>;
|
|
@@ -13895,6 +14029,7 @@ type PrivateRepositoryForkingEnableAuditEntry = AuditEntry & EnterpriseAuditEntr
|
|
|
13895
14029
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
13896
14030
|
/** The HTTP URL for this enterprise. */
|
|
13897
14031
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
14032
|
+
/** The Node ID of this object */
|
|
13898
14033
|
id: Scalars['ID']['output'];
|
|
13899
14034
|
/** The corresponding operation type for the action */
|
|
13900
14035
|
operationType?: Maybe<OperationType>;
|
|
@@ -13954,6 +14089,7 @@ type ProfileOwner = {
|
|
|
13954
14089
|
anyPinnableItems: Scalars['Boolean']['output'];
|
|
13955
14090
|
/** The public profile email. */
|
|
13956
14091
|
email?: Maybe<Scalars['String']['output']>;
|
|
14092
|
+
/** The Node ID of the ProfileOwner object */
|
|
13957
14093
|
id: Scalars['ID']['output'];
|
|
13958
14094
|
/**
|
|
13959
14095
|
* Showcases a selection of repositories and gists that the profile owner has
|
|
@@ -14016,6 +14152,7 @@ type Project = Closable & Node & Updatable & {
|
|
|
14016
14152
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
14017
14153
|
/** Identifies the primary key from the database. */
|
|
14018
14154
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14155
|
+
/** The Node ID of this object */
|
|
14019
14156
|
id: Scalars['ID']['output'];
|
|
14020
14157
|
/** The project's name. */
|
|
14021
14158
|
name: Scalars['String']['output'];
|
|
@@ -14075,6 +14212,7 @@ type ProjectCard = Node & {
|
|
|
14075
14212
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
14076
14213
|
/** Identifies the primary key from the database. */
|
|
14077
14214
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14215
|
+
/** The Node ID of this object */
|
|
14078
14216
|
id: Scalars['ID']['output'];
|
|
14079
14217
|
/** Whether the card is archived */
|
|
14080
14218
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -14136,6 +14274,7 @@ type ProjectColumn = Node & {
|
|
|
14136
14274
|
createdAt: Scalars['DateTime']['output'];
|
|
14137
14275
|
/** Identifies the primary key from the database. */
|
|
14138
14276
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14277
|
+
/** The Node ID of this object */
|
|
14139
14278
|
id: Scalars['ID']['output'];
|
|
14140
14279
|
/** The project column's name. */
|
|
14141
14280
|
name: Scalars['String']['output'];
|
|
@@ -14223,6 +14362,7 @@ type ProjectOrderField =
|
|
|
14223
14362
|
| 'UPDATED_AT';
|
|
14224
14363
|
/** Represents an owner of a Project. */
|
|
14225
14364
|
type ProjectOwner = {
|
|
14365
|
+
/** The Node ID of the ProjectOwner object */
|
|
14226
14366
|
id: Scalars['ID']['output'];
|
|
14227
14367
|
/** Find project by number. */
|
|
14228
14368
|
project?: Maybe<Project>;
|
|
@@ -14300,6 +14440,7 @@ type ProjectV2 = Closable & Node & Updatable & {
|
|
|
14300
14440
|
field?: Maybe<ProjectV2FieldConfiguration>;
|
|
14301
14441
|
/** List of fields and their constraints in the project */
|
|
14302
14442
|
fields: ProjectV2FieldConfigurationConnection;
|
|
14443
|
+
/** The Node ID of this object */
|
|
14303
14444
|
id: Scalars['ID']['output'];
|
|
14304
14445
|
/** List of items in the project */
|
|
14305
14446
|
items: ProjectV2ItemConnection;
|
|
@@ -14472,6 +14613,7 @@ type ProjectV2Field = Node & ProjectV2FieldCommon & {
|
|
|
14472
14613
|
dataType: ProjectV2FieldType;
|
|
14473
14614
|
/** Identifies the primary key from the database. */
|
|
14474
14615
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14616
|
+
/** The Node ID of this object */
|
|
14475
14617
|
id: Scalars['ID']['output'];
|
|
14476
14618
|
/** The project field's name. */
|
|
14477
14619
|
name: Scalars['String']['output'];
|
|
@@ -14488,6 +14630,7 @@ type ProjectV2FieldCommon = {
|
|
|
14488
14630
|
dataType: ProjectV2FieldType;
|
|
14489
14631
|
/** Identifies the primary key from the database. */
|
|
14490
14632
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14633
|
+
/** The Node ID of the ProjectV2FieldCommon object */
|
|
14491
14634
|
id: Scalars['ID']['output'];
|
|
14492
14635
|
/** The project field's name. */
|
|
14493
14636
|
name: Scalars['String']['output'];
|
|
@@ -14616,6 +14759,7 @@ type ProjectV2Item = Node & {
|
|
|
14616
14759
|
fieldValueByName?: Maybe<ProjectV2ItemFieldValue>;
|
|
14617
14760
|
/** The field values that are set on the item. */
|
|
14618
14761
|
fieldValues: ProjectV2ItemFieldValueConnection;
|
|
14762
|
+
/** The Node ID of this object */
|
|
14619
14763
|
id: Scalars['ID']['output'];
|
|
14620
14764
|
/** Whether the item is archived. */
|
|
14621
14765
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -14673,6 +14817,7 @@ type ProjectV2ItemFieldDateValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14673
14817
|
date?: Maybe<Scalars['Date']['output']>;
|
|
14674
14818
|
/** The project field that contains this value. */
|
|
14675
14819
|
field: ProjectV2FieldConfiguration;
|
|
14820
|
+
/** The Node ID of this object */
|
|
14676
14821
|
id: Scalars['ID']['output'];
|
|
14677
14822
|
/** The project item that contains this value. */
|
|
14678
14823
|
item: ProjectV2Item;
|
|
@@ -14692,6 +14837,7 @@ type ProjectV2ItemFieldIterationValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14692
14837
|
duration: Scalars['Int']['output'];
|
|
14693
14838
|
/** The project field that contains this value. */
|
|
14694
14839
|
field: ProjectV2FieldConfiguration;
|
|
14840
|
+
/** The Node ID of this object */
|
|
14695
14841
|
id: Scalars['ID']['output'];
|
|
14696
14842
|
/** The project item that contains this value. */
|
|
14697
14843
|
item: ProjectV2Item;
|
|
@@ -14740,6 +14886,7 @@ type ProjectV2ItemFieldNumberValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14740
14886
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14741
14887
|
/** The project field that contains this value. */
|
|
14742
14888
|
field: ProjectV2FieldConfiguration;
|
|
14889
|
+
/** The Node ID of this object */
|
|
14743
14890
|
id: Scalars['ID']['output'];
|
|
14744
14891
|
/** The project item that contains this value. */
|
|
14745
14892
|
item: ProjectV2Item;
|
|
@@ -14804,6 +14951,7 @@ type ProjectV2ItemFieldSingleSelectValue = Node & ProjectV2ItemFieldValueCommon
|
|
|
14804
14951
|
descriptionHTML?: Maybe<Scalars['String']['output']>;
|
|
14805
14952
|
/** The project field that contains this value. */
|
|
14806
14953
|
field: ProjectV2FieldConfiguration;
|
|
14954
|
+
/** The Node ID of this object */
|
|
14807
14955
|
id: Scalars['ID']['output'];
|
|
14808
14956
|
/** The project item that contains this value. */
|
|
14809
14957
|
item: ProjectV2Item;
|
|
@@ -14827,6 +14975,7 @@ type ProjectV2ItemFieldTextValue = Node & ProjectV2ItemFieldValueCommon & {
|
|
|
14827
14975
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14828
14976
|
/** The project field that contains this value. */
|
|
14829
14977
|
field: ProjectV2FieldConfiguration;
|
|
14978
|
+
/** The Node ID of this object */
|
|
14830
14979
|
id: Scalars['ID']['output'];
|
|
14831
14980
|
/** The project item that contains this value. */
|
|
14832
14981
|
item: ProjectV2Item;
|
|
@@ -14862,6 +15011,7 @@ type ProjectV2ItemFieldValueCommon = {
|
|
|
14862
15011
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
14863
15012
|
/** The project field that contains this value. */
|
|
14864
15013
|
field: ProjectV2FieldConfiguration;
|
|
15014
|
+
/** The Node ID of the ProjectV2ItemFieldValueCommon object */
|
|
14865
15015
|
id: Scalars['ID']['output'];
|
|
14866
15016
|
/** The project item that contains this value. */
|
|
14867
15017
|
item: ProjectV2Item;
|
|
@@ -14931,6 +15081,7 @@ type ProjectV2IterationField = Node & ProjectV2FieldCommon & {
|
|
|
14931
15081
|
dataType: ProjectV2FieldType;
|
|
14932
15082
|
/** Identifies the primary key from the database. */
|
|
14933
15083
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15084
|
+
/** The Node ID of this object */
|
|
14934
15085
|
id: Scalars['ID']['output'];
|
|
14935
15086
|
/** The project field's name. */
|
|
14936
15087
|
name: Scalars['String']['output'];
|
|
@@ -14984,6 +15135,7 @@ type ProjectV2OrderField =
|
|
|
14984
15135
|
| 'UPDATED_AT';
|
|
14985
15136
|
/** Represents an owner of a project (beta). */
|
|
14986
15137
|
type ProjectV2Owner = {
|
|
15138
|
+
/** The Node ID of the ProjectV2Owner object */
|
|
14987
15139
|
id: Scalars['ID']['output'];
|
|
14988
15140
|
/** Find a project by number. */
|
|
14989
15141
|
projectV2?: Maybe<ProjectV2>;
|
|
@@ -15034,6 +15186,7 @@ type ProjectV2SingleSelectField = Node & ProjectV2FieldCommon & {
|
|
|
15034
15186
|
dataType: ProjectV2FieldType;
|
|
15035
15187
|
/** Identifies the primary key from the database. */
|
|
15036
15188
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15189
|
+
/** The Node ID of this object */
|
|
15037
15190
|
id: Scalars['ID']['output'];
|
|
15038
15191
|
/** The project field's name. */
|
|
15039
15192
|
name: Scalars['String']['output'];
|
|
@@ -15171,6 +15324,7 @@ type ProjectV2View = Node & {
|
|
|
15171
15324
|
groupBy?: Maybe<ProjectV2FieldConnection>;
|
|
15172
15325
|
/** The view's group-by field. */
|
|
15173
15326
|
groupByFields?: Maybe<ProjectV2FieldConfigurationConnection>;
|
|
15327
|
+
/** The Node ID of this object */
|
|
15174
15328
|
id: Scalars['ID']['output'];
|
|
15175
15329
|
/** The project view's layout. */
|
|
15176
15330
|
layout: ProjectV2ViewLayout;
|
|
@@ -15316,6 +15470,7 @@ type ProjectV2Workflow = Node & {
|
|
|
15316
15470
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
15317
15471
|
/** Whether the workflow is enabled. */
|
|
15318
15472
|
enabled: Scalars['Boolean']['output'];
|
|
15473
|
+
/** The Node ID of this object */
|
|
15319
15474
|
id: Scalars['ID']['output'];
|
|
15320
15475
|
/** The name of the workflow. */
|
|
15321
15476
|
name: Scalars['String']['output'];
|
|
@@ -15375,6 +15530,7 @@ type PublicKey = Node & {
|
|
|
15375
15530
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
15376
15531
|
/** The fingerprint for this PublicKey. */
|
|
15377
15532
|
fingerprint: Scalars['String']['output'];
|
|
15533
|
+
/** The Node ID of this object */
|
|
15378
15534
|
id: Scalars['ID']['output'];
|
|
15379
15535
|
/** Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user. */
|
|
15380
15536
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -15491,6 +15647,7 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
|
|
|
15491
15647
|
headRepositoryOwner?: Maybe<Organization | User>;
|
|
15492
15648
|
/** The hovercard information for this issue */
|
|
15493
15649
|
hovercard: Hovercard;
|
|
15650
|
+
/** The Node ID of this object */
|
|
15494
15651
|
id: Scalars['ID']['output'];
|
|
15495
15652
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
15496
15653
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -15845,6 +16002,7 @@ type PullRequestCommit = Node & UniformResourceLocatable & {
|
|
|
15845
16002
|
__typename?: 'PullRequestCommit';
|
|
15846
16003
|
/** The Git commit object */
|
|
15847
16004
|
commit: Commit;
|
|
16005
|
+
/** The Node ID of this object */
|
|
15848
16006
|
id: Scalars['ID']['output'];
|
|
15849
16007
|
/** The pull request this commit belongs to */
|
|
15850
16008
|
pullRequest: PullRequest;
|
|
@@ -15860,6 +16018,7 @@ type PullRequestCommitCommentThread = Node & RepositoryNode & {
|
|
|
15860
16018
|
comments: CommitCommentConnection;
|
|
15861
16019
|
/** The commit the comments were made on. */
|
|
15862
16020
|
commit: Commit;
|
|
16021
|
+
/** The Node ID of this object */
|
|
15863
16022
|
id: Scalars['ID']['output'];
|
|
15864
16023
|
/** The file the comments were made on. */
|
|
15865
16024
|
path?: Maybe<Scalars['String']['output']>;
|
|
@@ -16008,6 +16167,7 @@ type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable &
|
|
|
16008
16167
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
16009
16168
|
/** The actor who edited the comment. */
|
|
16010
16169
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
16170
|
+
/** The Node ID of this object */
|
|
16011
16171
|
id: Scalars['ID']['output'];
|
|
16012
16172
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
16013
16173
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -16115,6 +16275,7 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
|
|
|
16115
16275
|
draftedAt: Scalars['DateTime']['output'];
|
|
16116
16276
|
/** The actor who edited the comment. */
|
|
16117
16277
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
16278
|
+
/** The Node ID of this object */
|
|
16118
16279
|
id: Scalars['ID']['output'];
|
|
16119
16280
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
16120
16281
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -16306,6 +16467,7 @@ type PullRequestReviewThread = Node & {
|
|
|
16306
16467
|
comments: PullRequestReviewCommentConnection;
|
|
16307
16468
|
/** The side of the diff on which this thread was placed. */
|
|
16308
16469
|
diffSide: DiffSide;
|
|
16470
|
+
/** The Node ID of this object */
|
|
16309
16471
|
id: Scalars['ID']['output'];
|
|
16310
16472
|
/** Whether or not the thread has been collapsed (resolved) */
|
|
16311
16473
|
isCollapsed: Scalars['Boolean']['output'];
|
|
@@ -16409,6 +16571,7 @@ type PullRequestThread = Node & {
|
|
|
16409
16571
|
comments: PullRequestReviewCommentConnection;
|
|
16410
16572
|
/** The side of the diff on which this thread was placed. */
|
|
16411
16573
|
diffSide: DiffSide;
|
|
16574
|
+
/** The Node ID of this object */
|
|
16412
16575
|
id: Scalars['ID']['output'];
|
|
16413
16576
|
/** Whether or not the thread has been collapsed (resolved) */
|
|
16414
16577
|
isCollapsed: Scalars['Boolean']['output'];
|
|
@@ -16624,6 +16787,7 @@ type PullRequestUpdateState =
|
|
|
16624
16787
|
/** A Git push. */
|
|
16625
16788
|
type Push = Node & {
|
|
16626
16789
|
__typename?: 'Push';
|
|
16790
|
+
/** The Node ID of this object */
|
|
16627
16791
|
id: Scalars['ID']['output'];
|
|
16628
16792
|
/** The SHA after the push */
|
|
16629
16793
|
nextSha?: Maybe<Scalars['GitObjectID']['output']>;
|
|
@@ -16643,6 +16807,7 @@ type PushAllowance = Node & {
|
|
|
16643
16807
|
actor?: Maybe<PushAllowanceActor>;
|
|
16644
16808
|
/** Identifies the branch protection rule associated with the allowed user, team, or app. */
|
|
16645
16809
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
16810
|
+
/** The Node ID of this object */
|
|
16646
16811
|
id: Scalars['ID']['output'];
|
|
16647
16812
|
};
|
|
16648
16813
|
/** Types that can be an actor. */
|
|
@@ -16891,6 +17056,7 @@ type RateLimit = {
|
|
|
16891
17056
|
type Reactable = {
|
|
16892
17057
|
/** Identifies the primary key from the database. */
|
|
16893
17058
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
17059
|
+
/** The Node ID of the Reactable object */
|
|
16894
17060
|
id: Scalars['ID']['output'];
|
|
16895
17061
|
/** A list of reactions grouped by content left on the subject. */
|
|
16896
17062
|
reactionGroups?: Maybe<Array<ReactionGroup>>;
|
|
@@ -16938,6 +17104,7 @@ type Reaction = Node & {
|
|
|
16938
17104
|
createdAt: Scalars['DateTime']['output'];
|
|
16939
17105
|
/** Identifies the primary key from the database. */
|
|
16940
17106
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
17107
|
+
/** The Node ID of this object */
|
|
16941
17108
|
id: Scalars['ID']['output'];
|
|
16942
17109
|
/** The reactable piece of content */
|
|
16943
17110
|
reactable: CommitComment | Discussion | DiscussionComment | Issue | IssueComment | PullRequest | PullRequestReview | PullRequestReviewComment | Release | TeamDiscussion | TeamDiscussionComment;
|
|
@@ -17059,6 +17226,7 @@ type ReadyForReviewEvent = Node & UniformResourceLocatable & {
|
|
|
17059
17226
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
17060
17227
|
/** Identifies the date and time when the object was created. */
|
|
17061
17228
|
createdAt: Scalars['DateTime']['output'];
|
|
17229
|
+
/** The Node ID of this object */
|
|
17062
17230
|
id: Scalars['ID']['output'];
|
|
17063
17231
|
/** PullRequest referenced by event. */
|
|
17064
17232
|
pullRequest: PullRequest;
|
|
@@ -17076,6 +17244,7 @@ type Ref = Node & {
|
|
|
17076
17244
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
17077
17245
|
/** Compares the current ref as a base ref to another head ref, if the comparison can be made. */
|
|
17078
17246
|
compare?: Maybe<Comparison>;
|
|
17247
|
+
/** The Node ID of this object */
|
|
17079
17248
|
id: Scalars['ID']['output'];
|
|
17080
17249
|
/** The ref name. */
|
|
17081
17250
|
name: Scalars['String']['output'];
|
|
@@ -17199,6 +17368,7 @@ type ReferencedEvent = Node & {
|
|
|
17199
17368
|
commitRepository: Repository;
|
|
17200
17369
|
/** Identifies the date and time when the object was created. */
|
|
17201
17370
|
createdAt: Scalars['DateTime']['output'];
|
|
17371
|
+
/** The Node ID of this object */
|
|
17202
17372
|
id: Scalars['ID']['output'];
|
|
17203
17373
|
/** Reference originated in a different repository. */
|
|
17204
17374
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -17271,6 +17441,7 @@ type Release = Node & Reactable & UniformResourceLocatable & {
|
|
|
17271
17441
|
description?: Maybe<Scalars['String']['output']>;
|
|
17272
17442
|
/** The description of this release rendered to HTML. */
|
|
17273
17443
|
descriptionHTML?: Maybe<Scalars['HTML']['output']>;
|
|
17444
|
+
/** The Node ID of this object */
|
|
17274
17445
|
id: Scalars['ID']['output'];
|
|
17275
17446
|
/** Whether or not the release is a draft */
|
|
17276
17447
|
isDraft: Scalars['Boolean']['output'];
|
|
@@ -17348,6 +17519,7 @@ type ReleaseAsset = Node & {
|
|
|
17348
17519
|
downloadCount: Scalars['Int']['output'];
|
|
17349
17520
|
/** Identifies the URL where you can download the release asset via the browser. */
|
|
17350
17521
|
downloadUrl: Scalars['URI']['output'];
|
|
17522
|
+
/** The Node ID of this object */
|
|
17351
17523
|
id: Scalars['ID']['output'];
|
|
17352
17524
|
/** Identifies the title of the release asset. */
|
|
17353
17525
|
name: Scalars['String']['output'];
|
|
@@ -17625,6 +17797,7 @@ type RemovedFromMergeQueueEvent = Node & {
|
|
|
17625
17797
|
createdAt: Scalars['DateTime']['output'];
|
|
17626
17798
|
/** The user who removed this Pull Request from the merge queue */
|
|
17627
17799
|
enqueuer?: Maybe<User>;
|
|
17800
|
+
/** The Node ID of this object */
|
|
17628
17801
|
id: Scalars['ID']['output'];
|
|
17629
17802
|
/** The merge queue where this pull request was removed from. */
|
|
17630
17803
|
mergeQueue?: Maybe<MergeQueue>;
|
|
@@ -17642,6 +17815,7 @@ type RemovedFromProjectEvent = Node & {
|
|
|
17642
17815
|
createdAt: Scalars['DateTime']['output'];
|
|
17643
17816
|
/** Identifies the primary key from the database. */
|
|
17644
17817
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
17818
|
+
/** The Node ID of this object */
|
|
17645
17819
|
id: Scalars['ID']['output'];
|
|
17646
17820
|
};
|
|
17647
17821
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
@@ -17653,6 +17827,7 @@ type RenamedTitleEvent = Node & {
|
|
|
17653
17827
|
createdAt: Scalars['DateTime']['output'];
|
|
17654
17828
|
/** Identifies the current title of the issue or pull request. */
|
|
17655
17829
|
currentTitle: Scalars['String']['output'];
|
|
17830
|
+
/** The Node ID of this object */
|
|
17656
17831
|
id: Scalars['ID']['output'];
|
|
17657
17832
|
/** Identifies the previous title of the issue or pull request. */
|
|
17658
17833
|
previousTitle: Scalars['String']['output'];
|
|
@@ -17715,6 +17890,7 @@ type ReopenedEvent = Node & {
|
|
|
17715
17890
|
closable: Discussion | Issue | Milestone | Project | ProjectV2 | PullRequest;
|
|
17716
17891
|
/** Identifies the date and time when the object was created. */
|
|
17717
17892
|
createdAt: Scalars['DateTime']['output'];
|
|
17893
|
+
/** The Node ID of this object */
|
|
17718
17894
|
id: Scalars['ID']['output'];
|
|
17719
17895
|
/** The reason the issue state was changed to open. */
|
|
17720
17896
|
stateReason?: Maybe<IssueStateReason>;
|
|
@@ -17738,6 +17914,7 @@ type RepoAccessAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
|
|
|
17738
17914
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17739
17915
|
/** The time the action was initiated */
|
|
17740
17916
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
17917
|
+
/** The Node ID of this object */
|
|
17741
17918
|
id: Scalars['ID']['output'];
|
|
17742
17919
|
/** The corresponding operation type for the action */
|
|
17743
17920
|
operationType?: Maybe<OperationType>;
|
|
@@ -17795,6 +17972,7 @@ type RepoAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
17795
17972
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17796
17973
|
/** The time the action was initiated */
|
|
17797
17974
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
17975
|
+
/** The Node ID of this object */
|
|
17798
17976
|
id: Scalars['ID']['output'];
|
|
17799
17977
|
/** The corresponding operation type for the action */
|
|
17800
17978
|
operationType?: Maybe<OperationType>;
|
|
@@ -17852,6 +18030,7 @@ type RepoAddTopicAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & R
|
|
|
17852
18030
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17853
18031
|
/** The time the action was initiated */
|
|
17854
18032
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18033
|
+
/** The Node ID of this object */
|
|
17855
18034
|
id: Scalars['ID']['output'];
|
|
17856
18035
|
/** The corresponding operation type for the action */
|
|
17857
18036
|
operationType?: Maybe<OperationType>;
|
|
@@ -17903,6 +18082,7 @@ type RepoArchivedAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & R
|
|
|
17903
18082
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17904
18083
|
/** The time the action was initiated */
|
|
17905
18084
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18085
|
+
/** The Node ID of this object */
|
|
17906
18086
|
id: Scalars['ID']['output'];
|
|
17907
18087
|
/** The corresponding operation type for the action */
|
|
17908
18088
|
operationType?: Maybe<OperationType>;
|
|
@@ -17960,6 +18140,7 @@ type RepoChangeMergeSettingAuditEntry = AuditEntry & Node & OrganizationAuditEnt
|
|
|
17960
18140
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
17961
18141
|
/** The time the action was initiated */
|
|
17962
18142
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18143
|
+
/** The Node ID of this object */
|
|
17963
18144
|
id: Scalars['ID']['output'];
|
|
17964
18145
|
/** Whether the change was to enable (true) or disable (false) the merge type */
|
|
17965
18146
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18019,6 +18200,7 @@ type RepoConfigDisableAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiz
|
|
|
18019
18200
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18020
18201
|
/** The time the action was initiated */
|
|
18021
18202
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18203
|
+
/** The Node ID of this object */
|
|
18022
18204
|
id: Scalars['ID']['output'];
|
|
18023
18205
|
/** The corresponding operation type for the action */
|
|
18024
18206
|
operationType?: Maybe<OperationType>;
|
|
@@ -18066,6 +18248,7 @@ type RepoConfigDisableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organiza
|
|
|
18066
18248
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18067
18249
|
/** The time the action was initiated */
|
|
18068
18250
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18251
|
+
/** The Node ID of this object */
|
|
18069
18252
|
id: Scalars['ID']['output'];
|
|
18070
18253
|
/** The corresponding operation type for the action */
|
|
18071
18254
|
operationType?: Maybe<OperationType>;
|
|
@@ -18113,6 +18296,7 @@ type RepoConfigDisableContributorsOnlyAuditEntry = AuditEntry & Node & Organizat
|
|
|
18113
18296
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18114
18297
|
/** The time the action was initiated */
|
|
18115
18298
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18299
|
+
/** The Node ID of this object */
|
|
18116
18300
|
id: Scalars['ID']['output'];
|
|
18117
18301
|
/** The corresponding operation type for the action */
|
|
18118
18302
|
operationType?: Maybe<OperationType>;
|
|
@@ -18160,6 +18344,7 @@ type RepoConfigDisableSockpuppetDisallowedAuditEntry = AuditEntry & Node & Organ
|
|
|
18160
18344
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18161
18345
|
/** The time the action was initiated */
|
|
18162
18346
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18347
|
+
/** The Node ID of this object */
|
|
18163
18348
|
id: Scalars['ID']['output'];
|
|
18164
18349
|
/** The corresponding operation type for the action */
|
|
18165
18350
|
operationType?: Maybe<OperationType>;
|
|
@@ -18207,6 +18392,7 @@ type RepoConfigEnableAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiza
|
|
|
18207
18392
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18208
18393
|
/** The time the action was initiated */
|
|
18209
18394
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18395
|
+
/** The Node ID of this object */
|
|
18210
18396
|
id: Scalars['ID']['output'];
|
|
18211
18397
|
/** The corresponding operation type for the action */
|
|
18212
18398
|
operationType?: Maybe<OperationType>;
|
|
@@ -18254,6 +18440,7 @@ type RepoConfigEnableCollaboratorsOnlyAuditEntry = AuditEntry & Node & Organizat
|
|
|
18254
18440
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18255
18441
|
/** The time the action was initiated */
|
|
18256
18442
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18443
|
+
/** The Node ID of this object */
|
|
18257
18444
|
id: Scalars['ID']['output'];
|
|
18258
18445
|
/** The corresponding operation type for the action */
|
|
18259
18446
|
operationType?: Maybe<OperationType>;
|
|
@@ -18301,6 +18488,7 @@ type RepoConfigEnableContributorsOnlyAuditEntry = AuditEntry & Node & Organizati
|
|
|
18301
18488
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18302
18489
|
/** The time the action was initiated */
|
|
18303
18490
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18491
|
+
/** The Node ID of this object */
|
|
18304
18492
|
id: Scalars['ID']['output'];
|
|
18305
18493
|
/** The corresponding operation type for the action */
|
|
18306
18494
|
operationType?: Maybe<OperationType>;
|
|
@@ -18348,6 +18536,7 @@ type RepoConfigEnableSockpuppetDisallowedAuditEntry = AuditEntry & Node & Organi
|
|
|
18348
18536
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18349
18537
|
/** The time the action was initiated */
|
|
18350
18538
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18539
|
+
/** The Node ID of this object */
|
|
18351
18540
|
id: Scalars['ID']['output'];
|
|
18352
18541
|
/** The corresponding operation type for the action */
|
|
18353
18542
|
operationType?: Maybe<OperationType>;
|
|
@@ -18395,6 +18584,7 @@ type RepoConfigLockAnonymousGitAccessAuditEntry = AuditEntry & Node & Organizati
|
|
|
18395
18584
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18396
18585
|
/** The time the action was initiated */
|
|
18397
18586
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18587
|
+
/** The Node ID of this object */
|
|
18398
18588
|
id: Scalars['ID']['output'];
|
|
18399
18589
|
/** The corresponding operation type for the action */
|
|
18400
18590
|
operationType?: Maybe<OperationType>;
|
|
@@ -18442,6 +18632,7 @@ type RepoConfigUnlockAnonymousGitAccessAuditEntry = AuditEntry & Node & Organiza
|
|
|
18442
18632
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18443
18633
|
/** The time the action was initiated */
|
|
18444
18634
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18635
|
+
/** The Node ID of this object */
|
|
18445
18636
|
id: Scalars['ID']['output'];
|
|
18446
18637
|
/** The corresponding operation type for the action */
|
|
18447
18638
|
operationType?: Maybe<OperationType>;
|
|
@@ -18493,6 +18684,7 @@ type RepoCreateAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Rep
|
|
|
18493
18684
|
forkParentName?: Maybe<Scalars['String']['output']>;
|
|
18494
18685
|
/** The name of the root repository for this network. */
|
|
18495
18686
|
forkSourceName?: Maybe<Scalars['String']['output']>;
|
|
18687
|
+
/** The Node ID of this object */
|
|
18496
18688
|
id: Scalars['ID']['output'];
|
|
18497
18689
|
/** The corresponding operation type for the action */
|
|
18498
18690
|
operationType?: Maybe<OperationType>;
|
|
@@ -18550,6 +18742,7 @@ type RepoDestroyAuditEntry = AuditEntry & Node & OrganizationAuditEntryData & Re
|
|
|
18550
18742
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18551
18743
|
/** The time the action was initiated */
|
|
18552
18744
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18745
|
+
/** The Node ID of this object */
|
|
18553
18746
|
id: Scalars['ID']['output'];
|
|
18554
18747
|
/** The corresponding operation type for the action */
|
|
18555
18748
|
operationType?: Maybe<OperationType>;
|
|
@@ -18607,6 +18800,7 @@ type RepoRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
18607
18800
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18608
18801
|
/** The time the action was initiated */
|
|
18609
18802
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18803
|
+
/** The Node ID of this object */
|
|
18610
18804
|
id: Scalars['ID']['output'];
|
|
18611
18805
|
/** The corresponding operation type for the action */
|
|
18612
18806
|
operationType?: Maybe<OperationType>;
|
|
@@ -18664,6 +18858,7 @@ type RepoRemoveTopicAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
18664
18858
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
18665
18859
|
/** The time the action was initiated */
|
|
18666
18860
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
18861
|
+
/** The Node ID of this object */
|
|
18667
18862
|
id: Scalars['ID']['output'];
|
|
18668
18863
|
/** The corresponding operation type for the action */
|
|
18669
18864
|
operationType?: Maybe<OperationType>;
|
|
@@ -18788,6 +18983,7 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
18788
18983
|
hasWikiEnabled: Scalars['Boolean']['output'];
|
|
18789
18984
|
/** The repository's URL. */
|
|
18790
18985
|
homepageUrl?: Maybe<Scalars['URI']['output']>;
|
|
18986
|
+
/** The Node ID of this object */
|
|
18791
18987
|
id: Scalars['ID']['output'];
|
|
18792
18988
|
/** The interaction ability settings for this repository. */
|
|
18793
18989
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
@@ -19585,6 +19781,7 @@ type RepositoryInvitation = Node & {
|
|
|
19585
19781
|
__typename?: 'RepositoryInvitation';
|
|
19586
19782
|
/** The email address that received the invitation. */
|
|
19587
19783
|
email?: Maybe<Scalars['String']['output']>;
|
|
19784
|
+
/** The Node ID of this object */
|
|
19588
19785
|
id: Scalars['ID']['output'];
|
|
19589
19786
|
/** The user who received the invitation. */
|
|
19590
19787
|
invitee?: Maybe<User>;
|
|
@@ -19653,6 +19850,7 @@ type RepositoryMigration = Migration & Node & {
|
|
|
19653
19850
|
databaseId?: Maybe<Scalars['String']['output']>;
|
|
19654
19851
|
/** The reason the migration failed. */
|
|
19655
19852
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
19853
|
+
/** The Node ID of this object */
|
|
19656
19854
|
id: Scalars['ID']['output'];
|
|
19657
19855
|
/** The URL for the migration log (expires 1 day after migration completes). */
|
|
19658
19856
|
migrationLogUrl?: Maybe<Scalars['URI']['output']>;
|
|
@@ -19760,6 +19958,7 @@ type RepositoryOrderField =
|
|
|
19760
19958
|
type RepositoryOwner = {
|
|
19761
19959
|
/** A URL pointing to the owner's public avatar. */
|
|
19762
19960
|
avatarUrl: Scalars['URI']['output'];
|
|
19961
|
+
/** The Node ID of the RepositoryOwner object */
|
|
19763
19962
|
id: Scalars['ID']['output'];
|
|
19764
19963
|
/** The username used to login. */
|
|
19765
19964
|
login: Scalars['String']['output'];
|
|
@@ -19820,6 +20019,7 @@ type RepositoryPrivacy =
|
|
|
19820
20019
|
/** A repository rule. */
|
|
19821
20020
|
type RepositoryRule = Node & {
|
|
19822
20021
|
__typename?: 'RepositoryRule';
|
|
20022
|
+
/** The Node ID of this object */
|
|
19823
20023
|
id: Scalars['ID']['output'];
|
|
19824
20024
|
/** The parameters for this rule. */
|
|
19825
20025
|
parameters?: Maybe<RuleParameters>;
|
|
@@ -19952,6 +20152,7 @@ type RepositoryRuleset = Node & {
|
|
|
19952
20152
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
19953
20153
|
/** The enforcement level of this ruleset */
|
|
19954
20154
|
enforcement: RuleEnforcement;
|
|
20155
|
+
/** The Node ID of this object */
|
|
19955
20156
|
id: Scalars['ID']['output'];
|
|
19956
20157
|
/** Name of the ruleset. */
|
|
19957
20158
|
name: Scalars['String']['output'];
|
|
@@ -19986,6 +20187,7 @@ type RepositoryRulesetBypassActor = Node & {
|
|
|
19986
20187
|
actor?: Maybe<BypassActor>;
|
|
19987
20188
|
/** The mode for the bypass actor */
|
|
19988
20189
|
bypassMode?: Maybe<RepositoryRulesetBypassActorBypassMode>;
|
|
20190
|
+
/** The Node ID of this object */
|
|
19989
20191
|
id: Scalars['ID']['output'];
|
|
19990
20192
|
/** This actor represents the ability for an organization owner to bypass */
|
|
19991
20193
|
organizationAdmin: Scalars['Boolean']['output'];
|
|
@@ -20065,6 +20267,7 @@ type RepositoryRulesetTarget =
|
|
|
20065
20267
|
/** A repository-topic connects a repository to a topic. */
|
|
20066
20268
|
type RepositoryTopic = Node & UniformResourceLocatable & {
|
|
20067
20269
|
__typename?: 'RepositoryTopic';
|
|
20270
|
+
/** The Node ID of this object */
|
|
20068
20271
|
id: Scalars['ID']['output'];
|
|
20069
20272
|
/** The HTTP path for this repository-topic. */
|
|
20070
20273
|
resourcePath: Scalars['URI']['output'];
|
|
@@ -20126,6 +20329,7 @@ type RepositoryVisibilityChangeDisableAuditEntry = AuditEntry & EnterpriseAuditE
|
|
|
20126
20329
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
20127
20330
|
/** The HTTP URL for this enterprise. */
|
|
20128
20331
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
20332
|
+
/** The Node ID of this object */
|
|
20129
20333
|
id: Scalars['ID']['output'];
|
|
20130
20334
|
/** The corresponding operation type for the action */
|
|
20131
20335
|
operationType?: Maybe<OperationType>;
|
|
@@ -20171,6 +20375,7 @@ type RepositoryVisibilityChangeEnableAuditEntry = AuditEntry & EnterpriseAuditEn
|
|
|
20171
20375
|
enterpriseSlug?: Maybe<Scalars['String']['output']>;
|
|
20172
20376
|
/** The HTTP URL for this enterprise. */
|
|
20173
20377
|
enterpriseUrl?: Maybe<Scalars['URI']['output']>;
|
|
20378
|
+
/** The Node ID of this object */
|
|
20174
20379
|
id: Scalars['ID']['output'];
|
|
20175
20380
|
/** The corresponding operation type for the action */
|
|
20176
20381
|
operationType?: Maybe<OperationType>;
|
|
@@ -20212,6 +20417,7 @@ type RepositoryVulnerabilityAlert = Node & RepositoryNode & {
|
|
|
20212
20417
|
dismisser?: Maybe<User>;
|
|
20213
20418
|
/** When was the alert fixed? */
|
|
20214
20419
|
fixedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20420
|
+
/** The Node ID of this object */
|
|
20215
20421
|
id: Scalars['ID']['output'];
|
|
20216
20422
|
/** Identifies the alert number. */
|
|
20217
20423
|
number: Scalars['Int']['output'];
|
|
@@ -20489,6 +20695,7 @@ type ReviewDismissalAllowance = Node & {
|
|
|
20489
20695
|
actor?: Maybe<ReviewDismissalAllowanceActor>;
|
|
20490
20696
|
/** Identifies the branch protection rule associated with the allowed user, team, or app. */
|
|
20491
20697
|
branchProtectionRule?: Maybe<BranchProtectionRule>;
|
|
20698
|
+
/** The Node ID of this object */
|
|
20492
20699
|
id: Scalars['ID']['output'];
|
|
20493
20700
|
};
|
|
20494
20701
|
/** Types that can be an actor. */
|
|
@@ -20526,6 +20733,7 @@ type ReviewDismissedEvent = Node & UniformResourceLocatable & {
|
|
|
20526
20733
|
dismissalMessage?: Maybe<Scalars['String']['output']>;
|
|
20527
20734
|
/** Identifies the optional message associated with the event, rendered to HTML. */
|
|
20528
20735
|
dismissalMessageHTML?: Maybe<Scalars['String']['output']>;
|
|
20736
|
+
/** The Node ID of this object */
|
|
20529
20737
|
id: Scalars['ID']['output'];
|
|
20530
20738
|
/** Identifies the previous state of the review with the 'review_dismissed' event. */
|
|
20531
20739
|
previousReviewState: PullRequestReviewState;
|
|
@@ -20547,6 +20755,7 @@ type ReviewRequest = Node & {
|
|
|
20547
20755
|
asCodeOwner: Scalars['Boolean']['output'];
|
|
20548
20756
|
/** Identifies the primary key from the database. */
|
|
20549
20757
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
20758
|
+
/** The Node ID of this object */
|
|
20550
20759
|
id: Scalars['ID']['output'];
|
|
20551
20760
|
/** Identifies the pull request associated with this review request. */
|
|
20552
20761
|
pullRequest: PullRequest;
|
|
@@ -20580,6 +20789,7 @@ type ReviewRequestRemovedEvent = Node & {
|
|
|
20580
20789
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
20581
20790
|
/** Identifies the date and time when the object was created. */
|
|
20582
20791
|
createdAt: Scalars['DateTime']['output'];
|
|
20792
|
+
/** The Node ID of this object */
|
|
20583
20793
|
id: Scalars['ID']['output'];
|
|
20584
20794
|
/** PullRequest referenced by event. */
|
|
20585
20795
|
pullRequest: PullRequest;
|
|
@@ -20593,6 +20803,7 @@ type ReviewRequestedEvent = Node & {
|
|
|
20593
20803
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
20594
20804
|
/** Identifies the date and time when the object was created. */
|
|
20595
20805
|
createdAt: Scalars['DateTime']['output'];
|
|
20806
|
+
/** The Node ID of this object */
|
|
20596
20807
|
id: Scalars['ID']['output'];
|
|
20597
20808
|
/** PullRequest referenced by event. */
|
|
20598
20809
|
pullRequest: PullRequest;
|
|
@@ -20730,6 +20941,7 @@ type SavedReply = Node & {
|
|
|
20730
20941
|
bodyHTML: Scalars['HTML']['output'];
|
|
20731
20942
|
/** Identifies the primary key from the database. */
|
|
20732
20943
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
20944
|
+
/** The Node ID of this object */
|
|
20733
20945
|
id: Scalars['ID']['output'];
|
|
20734
20946
|
/** The title of the saved reply. */
|
|
20735
20947
|
title: Scalars['String']['output'];
|
|
@@ -20852,6 +21064,7 @@ type SecurityAdvisory = Node & {
|
|
|
20852
21064
|
description: Scalars['String']['output'];
|
|
20853
21065
|
/** The GitHub Security Advisory ID */
|
|
20854
21066
|
ghsaId: Scalars['String']['output'];
|
|
21067
|
+
/** The Node ID of this object */
|
|
20855
21068
|
id: Scalars['ID']['output'];
|
|
20856
21069
|
/** A list of identifiers for this advisory */
|
|
20857
21070
|
identifiers: Array<SecurityAdvisoryIdentifier>;
|
|
@@ -21416,6 +21629,7 @@ type SponsorsActivity = Node & {
|
|
|
21416
21629
|
action: SponsorsActivityAction;
|
|
21417
21630
|
/** The sponsor's current privacy level. */
|
|
21418
21631
|
currentPrivacyLevel?: Maybe<SponsorshipPrivacy>;
|
|
21632
|
+
/** The Node ID of this object */
|
|
21419
21633
|
id: Scalars['ID']['output'];
|
|
21420
21634
|
/** The platform that was used to pay for the sponsorship. */
|
|
21421
21635
|
paymentSource?: Maybe<SponsorshipPaymentSource>;
|
|
@@ -22044,6 +22258,7 @@ type SponsorsListing = Node & {
|
|
|
22044
22258
|
fullDescription: Scalars['String']['output'];
|
|
22045
22259
|
/** The full description of the listing rendered to HTML. */
|
|
22046
22260
|
fullDescriptionHTML: Scalars['HTML']['output'];
|
|
22261
|
+
/** The Node ID of this object */
|
|
22047
22262
|
id: Scalars['ID']['output'];
|
|
22048
22263
|
/** Whether this listing is publicly visible. */
|
|
22049
22264
|
isPublic: Scalars['Boolean']['output'];
|
|
@@ -22098,6 +22313,7 @@ type SponsorsListingFeaturedItem = Node & {
|
|
|
22098
22313
|
description?: Maybe<Scalars['String']['output']>;
|
|
22099
22314
|
/** The record that is featured on the GitHub Sponsors profile. */
|
|
22100
22315
|
featureable: SponsorsListingFeatureableItem;
|
|
22316
|
+
/** The Node ID of this object */
|
|
22101
22317
|
id: Scalars['ID']['output'];
|
|
22102
22318
|
/**
|
|
22103
22319
|
* The position of this featured item on the GitHub Sponsors profile with a lower
|
|
@@ -22132,6 +22348,7 @@ type SponsorsTier = Node & {
|
|
|
22132
22348
|
description: Scalars['String']['output'];
|
|
22133
22349
|
/** The tier description rendered to HTML */
|
|
22134
22350
|
descriptionHTML: Scalars['HTML']['output'];
|
|
22351
|
+
/** The Node ID of this object */
|
|
22135
22352
|
id: Scalars['ID']['output'];
|
|
22136
22353
|
/**
|
|
22137
22354
|
* Whether this tier was chosen at checkout time by the sponsor rather than
|
|
@@ -22226,6 +22443,7 @@ type Sponsorship = Node & {
|
|
|
22226
22443
|
__typename?: 'Sponsorship';
|
|
22227
22444
|
/** Identifies the date and time when the object was created. */
|
|
22228
22445
|
createdAt: Scalars['DateTime']['output'];
|
|
22446
|
+
/** The Node ID of this object */
|
|
22229
22447
|
id: Scalars['ID']['output'];
|
|
22230
22448
|
/**
|
|
22231
22449
|
* Whether the sponsorship is active. False implies the sponsor is a past sponsor
|
|
@@ -22301,6 +22519,7 @@ type SponsorshipNewsletter = Node & {
|
|
|
22301
22519
|
body: Scalars['String']['output'];
|
|
22302
22520
|
/** Identifies the date and time when the object was created. */
|
|
22303
22521
|
createdAt: Scalars['DateTime']['output'];
|
|
22522
|
+
/** The Node ID of this object */
|
|
22304
22523
|
id: Scalars['ID']['output'];
|
|
22305
22524
|
/** Indicates if the newsletter has been made available to sponsors. */
|
|
22306
22525
|
isPublished: Scalars['Boolean']['output'];
|
|
@@ -22436,6 +22655,7 @@ type StargazerEdge = {
|
|
|
22436
22655
|
};
|
|
22437
22656
|
/** Things that can be starred. */
|
|
22438
22657
|
type Starrable = {
|
|
22658
|
+
/** The Node ID of the Starrable object */
|
|
22439
22659
|
id: Scalars['ID']['output'];
|
|
22440
22660
|
/** Returns a count of how many stargazers there are on this object */
|
|
22441
22661
|
stargazerCount: Scalars['Int']['output'];
|
|
@@ -22544,6 +22764,7 @@ type Status = Node & {
|
|
|
22544
22764
|
context?: Maybe<StatusContext>;
|
|
22545
22765
|
/** The individual status contexts for this commit. */
|
|
22546
22766
|
contexts: Array<StatusContext>;
|
|
22767
|
+
/** The Node ID of this object */
|
|
22547
22768
|
id: Scalars['ID']['output'];
|
|
22548
22769
|
/** The combined commit status. */
|
|
22549
22770
|
state: StatusState;
|
|
@@ -22581,6 +22802,7 @@ type StatusCheckRollup = Node & {
|
|
|
22581
22802
|
commit?: Maybe<Commit>;
|
|
22582
22803
|
/** A list of status contexts and check runs for this commit. */
|
|
22583
22804
|
contexts: StatusCheckRollupContextConnection;
|
|
22805
|
+
/** The Node ID of this object */
|
|
22584
22806
|
id: Scalars['ID']['output'];
|
|
22585
22807
|
/** The combined status for the commit. */
|
|
22586
22808
|
state: StatusState;
|
|
@@ -22637,6 +22859,7 @@ type StatusContext = Node & RequirableByPullRequest & {
|
|
|
22637
22859
|
creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
22638
22860
|
/** The description for this status context. */
|
|
22639
22861
|
description?: Maybe<Scalars['String']['output']>;
|
|
22862
|
+
/** The Node ID of this object */
|
|
22640
22863
|
id: Scalars['ID']['output'];
|
|
22641
22864
|
/** Whether this is required to pass before merging for a specific pull request. */
|
|
22642
22865
|
isRequired: Scalars['Boolean']['output'];
|
|
@@ -22760,6 +22983,7 @@ type SubmoduleEdge = {
|
|
|
22760
22983
|
};
|
|
22761
22984
|
/** Entities that can be subscribed to for web and email notifications. */
|
|
22762
22985
|
type Subscribable = {
|
|
22986
|
+
/** The Node ID of the Subscribable object */
|
|
22763
22987
|
id: Scalars['ID']['output'];
|
|
22764
22988
|
/** Check if the viewer is able to change their subscription status for the repository. */
|
|
22765
22989
|
viewerCanSubscribe: Scalars['Boolean']['output'];
|
|
@@ -22768,6 +22992,7 @@ type Subscribable = {
|
|
|
22768
22992
|
};
|
|
22769
22993
|
/** Entities that can be subscribed to for web and email notifications. */
|
|
22770
22994
|
type SubscribableThread = {
|
|
22995
|
+
/** The Node ID of the SubscribableThread object */
|
|
22771
22996
|
id: Scalars['ID']['output'];
|
|
22772
22997
|
/** Identifies the viewer's thread subscription form action. */
|
|
22773
22998
|
viewerThreadSubscriptionFormAction?: Maybe<ThreadSubscriptionFormAction>;
|
|
@@ -22781,6 +23006,7 @@ type SubscribedEvent = Node & {
|
|
|
22781
23006
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
22782
23007
|
/** Identifies the date and time when the object was created. */
|
|
22783
23008
|
createdAt: Scalars['DateTime']['output'];
|
|
23009
|
+
/** The Node ID of this object */
|
|
22784
23010
|
id: Scalars['ID']['output'];
|
|
22785
23011
|
/** Object referenced by event. */
|
|
22786
23012
|
subscribable: Commit | Discussion | Issue | PullRequest | Repository | Team | TeamDiscussion;
|
|
@@ -22812,6 +23038,7 @@ type Tag = GitObject & Node & {
|
|
|
22812
23038
|
commitResourcePath: Scalars['URI']['output'];
|
|
22813
23039
|
/** The HTTP URL for this Git object */
|
|
22814
23040
|
commitUrl: Scalars['URI']['output'];
|
|
23041
|
+
/** The Node ID of this object */
|
|
22815
23042
|
id: Scalars['ID']['output'];
|
|
22816
23043
|
/** The Git tag message. */
|
|
22817
23044
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -22878,6 +23105,7 @@ type Team = MemberStatusable & Node & Subscribable & {
|
|
|
22878
23105
|
editTeamResourcePath: Scalars['URI']['output'];
|
|
22879
23106
|
/** The HTTP URL for editing this team */
|
|
22880
23107
|
editTeamUrl: Scalars['URI']['output'];
|
|
23108
|
+
/** The Node ID of this object */
|
|
22881
23109
|
id: Scalars['ID']['output'];
|
|
22882
23110
|
/** A list of pending invitations for users to this team */
|
|
22883
23111
|
invitations?: Maybe<OrganizationInvitationConnection>;
|
|
@@ -23034,6 +23262,7 @@ type TeamAddMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData &
|
|
|
23034
23262
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23035
23263
|
/** The time the action was initiated */
|
|
23036
23264
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23265
|
+
/** The Node ID of this object */
|
|
23037
23266
|
id: Scalars['ID']['output'];
|
|
23038
23267
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23039
23268
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23083,6 +23312,7 @@ type TeamAddRepositoryAuditEntry = AuditEntry & Node & OrganizationAuditEntryDat
|
|
|
23083
23312
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23084
23313
|
/** The time the action was initiated */
|
|
23085
23314
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23315
|
+
/** The Node ID of this object */
|
|
23086
23316
|
id: Scalars['ID']['output'];
|
|
23087
23317
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23088
23318
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23151,6 +23381,7 @@ type TeamChangeParentTeamAuditEntry = AuditEntry & Node & OrganizationAuditEntry
|
|
|
23151
23381
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23152
23382
|
/** The time the action was initiated */
|
|
23153
23383
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23384
|
+
/** The Node ID of this object */
|
|
23154
23385
|
id: Scalars['ID']['output'];
|
|
23155
23386
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23156
23387
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23253,6 +23484,7 @@ type TeamDiscussion = Comment & Deletable & Node & Reactable & Subscribable & Un
|
|
|
23253
23484
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
23254
23485
|
/** The actor who edited the comment. */
|
|
23255
23486
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
23487
|
+
/** The Node ID of this object */
|
|
23256
23488
|
id: Scalars['ID']['output'];
|
|
23257
23489
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
23258
23490
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -23382,6 +23614,7 @@ type TeamDiscussionComment = Comment & Deletable & Node & Reactable & UniformRes
|
|
|
23382
23614
|
discussion: TeamDiscussion;
|
|
23383
23615
|
/** The actor who edited the comment. */
|
|
23384
23616
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
23617
|
+
/** The Node ID of this object */
|
|
23385
23618
|
id: Scalars['ID']['output'];
|
|
23386
23619
|
/** Check if this comment was edited and includes an edit with the creation data */
|
|
23387
23620
|
includesCreatedEdit: Scalars['Boolean']['output'];
|
|
@@ -23603,6 +23836,7 @@ type TeamRemoveMemberAuditEntry = AuditEntry & Node & OrganizationAuditEntryData
|
|
|
23603
23836
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23604
23837
|
/** The time the action was initiated */
|
|
23605
23838
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23839
|
+
/** The Node ID of this object */
|
|
23606
23840
|
id: Scalars['ID']['output'];
|
|
23607
23841
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23608
23842
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23652,6 +23886,7 @@ type TeamRemoveRepositoryAuditEntry = AuditEntry & Node & OrganizationAuditEntry
|
|
|
23652
23886
|
actorUrl?: Maybe<Scalars['URI']['output']>;
|
|
23653
23887
|
/** The time the action was initiated */
|
|
23654
23888
|
createdAt: Scalars['PreciseDateTime']['output'];
|
|
23889
|
+
/** The Node ID of this object */
|
|
23655
23890
|
id: Scalars['ID']['output'];
|
|
23656
23891
|
/** Whether the team was mapped to an LDAP Group. */
|
|
23657
23892
|
isLdapMapped?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -23789,6 +24024,7 @@ type ThreadSubscriptionState =
|
|
|
23789
24024
|
/** A topic aggregates entities that are related to a subject. */
|
|
23790
24025
|
type Topic = Node & Starrable & {
|
|
23791
24026
|
__typename?: 'Topic';
|
|
24027
|
+
/** The Node ID of this object */
|
|
23792
24028
|
id: Scalars['ID']['output'];
|
|
23793
24029
|
/** The topic's name. */
|
|
23794
24030
|
name: Scalars['String']['output'];
|
|
@@ -23900,6 +24136,7 @@ type TransferredEvent = Node & {
|
|
|
23900
24136
|
createdAt: Scalars['DateTime']['output'];
|
|
23901
24137
|
/** The repository this came from */
|
|
23902
24138
|
fromRepository?: Maybe<Repository>;
|
|
24139
|
+
/** The Node ID of this object */
|
|
23903
24140
|
id: Scalars['ID']['output'];
|
|
23904
24141
|
/** Identifies the issue associated with the event. */
|
|
23905
24142
|
issue: Issue;
|
|
@@ -23915,6 +24152,7 @@ type Tree = GitObject & Node & {
|
|
|
23915
24152
|
commitUrl: Scalars['URI']['output'];
|
|
23916
24153
|
/** A list of tree entries. */
|
|
23917
24154
|
entries?: Maybe<Array<TreeEntry>>;
|
|
24155
|
+
/** The Node ID of this object */
|
|
23918
24156
|
id: Scalars['ID']['output'];
|
|
23919
24157
|
/** The Git object ID */
|
|
23920
24158
|
oid: Scalars['GitObjectID']['output'];
|
|
@@ -23998,6 +24236,7 @@ type UnassignedEvent = Node & {
|
|
|
23998
24236
|
assignee?: Maybe<Assignee>;
|
|
23999
24237
|
/** Identifies the date and time when the object was created. */
|
|
24000
24238
|
createdAt: Scalars['DateTime']['output'];
|
|
24239
|
+
/** The Node ID of this object */
|
|
24001
24240
|
id: Scalars['ID']['output'];
|
|
24002
24241
|
/**
|
|
24003
24242
|
* Identifies the subject (user) who was unassigned.
|
|
@@ -24070,6 +24309,7 @@ type UnlabeledEvent = Node & {
|
|
|
24070
24309
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24071
24310
|
/** Identifies the date and time when the object was created. */
|
|
24072
24311
|
createdAt: Scalars['DateTime']['output'];
|
|
24312
|
+
/** The Node ID of this object */
|
|
24073
24313
|
id: Scalars['ID']['output'];
|
|
24074
24314
|
/** Identifies the label associated with the 'unlabeled' event. */
|
|
24075
24315
|
label: Label;
|
|
@@ -24153,6 +24393,7 @@ type UnlockedEvent = Node & {
|
|
|
24153
24393
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24154
24394
|
/** Identifies the date and time when the object was created. */
|
|
24155
24395
|
createdAt: Scalars['DateTime']['output'];
|
|
24396
|
+
/** The Node ID of this object */
|
|
24156
24397
|
id: Scalars['ID']['output'];
|
|
24157
24398
|
/** Object that was unlocked. */
|
|
24158
24399
|
lockable: Discussion | Issue | PullRequest;
|
|
@@ -24232,6 +24473,7 @@ type UnmarkedAsDuplicateEvent = Node & {
|
|
|
24232
24473
|
createdAt: Scalars['DateTime']['output'];
|
|
24233
24474
|
/** The issue or pull request which has been marked as a duplicate of another. */
|
|
24234
24475
|
duplicate?: Maybe<IssueOrPullRequest>;
|
|
24476
|
+
/** The Node ID of this object */
|
|
24235
24477
|
id: Scalars['ID']['output'];
|
|
24236
24478
|
/** Canonical and duplicate belong to different repositories. */
|
|
24237
24479
|
isCrossRepository: Scalars['Boolean']['output'];
|
|
@@ -24273,6 +24515,7 @@ type UnpinnedEvent = Node & {
|
|
|
24273
24515
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24274
24516
|
/** Identifies the date and time when the object was created. */
|
|
24275
24517
|
createdAt: Scalars['DateTime']['output'];
|
|
24518
|
+
/** The Node ID of this object */
|
|
24276
24519
|
id: Scalars['ID']['output'];
|
|
24277
24520
|
/** Identifies the issue associated with the event. */
|
|
24278
24521
|
issue: Issue;
|
|
@@ -24314,6 +24557,7 @@ type UnsubscribedEvent = Node & {
|
|
|
24314
24557
|
actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
24315
24558
|
/** Identifies the date and time when the object was created. */
|
|
24316
24559
|
createdAt: Scalars['DateTime']['output'];
|
|
24560
|
+
/** The Node ID of this object */
|
|
24317
24561
|
id: Scalars['ID']['output'];
|
|
24318
24562
|
/** Object referenced by event. */
|
|
24319
24563
|
subscribable: Commit | Discussion | Issue | PullRequest | Repository | Team | TeamDiscussion;
|
|
@@ -25590,6 +25834,7 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
|
|
|
25590
25834
|
hasSponsorsListing: Scalars['Boolean']['output'];
|
|
25591
25835
|
/** The hovercard information for this user in a given context */
|
|
25592
25836
|
hovercard: Hovercard;
|
|
25837
|
+
/** The Node ID of this object */
|
|
25593
25838
|
id: Scalars['ID']['output'];
|
|
25594
25839
|
/** The interaction ability settings for this user. */
|
|
25595
25840
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
@@ -26119,6 +26364,7 @@ type UserBlockedEvent = Node & {
|
|
|
26119
26364
|
blockDuration: UserBlockDuration;
|
|
26120
26365
|
/** Identifies the date and time when the object was created. */
|
|
26121
26366
|
createdAt: Scalars['DateTime']['output'];
|
|
26367
|
+
/** The Node ID of this object */
|
|
26122
26368
|
id: Scalars['ID']['output'];
|
|
26123
26369
|
/** The user who was blocked. */
|
|
26124
26370
|
subject?: Maybe<User>;
|
|
@@ -26150,6 +26396,7 @@ type UserContentEdit = Node & {
|
|
|
26150
26396
|
editedAt: Scalars['DateTime']['output'];
|
|
26151
26397
|
/** The actor who edited this content */
|
|
26152
26398
|
editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
|
|
26399
|
+
/** The Node ID of this object */
|
|
26153
26400
|
id: Scalars['ID']['output'];
|
|
26154
26401
|
/** Identifies the date and time when the object was last updated. */
|
|
26155
26402
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -26203,6 +26450,7 @@ type UserStatus = Node & {
|
|
|
26203
26450
|
emojiHTML?: Maybe<Scalars['HTML']['output']>;
|
|
26204
26451
|
/** If set, the status will not be shown after this date. */
|
|
26205
26452
|
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
26453
|
+
/** The Node ID of this object */
|
|
26206
26454
|
id: Scalars['ID']['output'];
|
|
26207
26455
|
/** Whether this status indicates the user is not fully available on GitHub. */
|
|
26208
26456
|
indicatesLimitedAvailability: Scalars['Boolean']['output'];
|
|
@@ -26261,6 +26509,7 @@ type VerifiableDomain = Node & {
|
|
|
26261
26509
|
hasFoundHostName: Scalars['Boolean']['output'];
|
|
26262
26510
|
/** Whether a TXT record for verification with the expected verification token was found. */
|
|
26263
26511
|
hasFoundVerificationToken: Scalars['Boolean']['output'];
|
|
26512
|
+
/** The Node ID of this object */
|
|
26264
26513
|
id: Scalars['ID']['output'];
|
|
26265
26514
|
/** Whether or not the domain is approved. */
|
|
26266
26515
|
isApproved: Scalars['Boolean']['output'];
|
|
@@ -26355,6 +26604,7 @@ type Workflow = Node & UniformResourceLocatable & {
|
|
|
26355
26604
|
createdAt: Scalars['DateTime']['output'];
|
|
26356
26605
|
/** Identifies the primary key from the database. */
|
|
26357
26606
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
26607
|
+
/** The Node ID of this object */
|
|
26358
26608
|
id: Scalars['ID']['output'];
|
|
26359
26609
|
/** The name of the workflow. */
|
|
26360
26610
|
name: Scalars['String']['output'];
|
|
@@ -26415,6 +26665,7 @@ type WorkflowRun = Node & UniformResourceLocatable & {
|
|
|
26415
26665
|
event: Scalars['String']['output'];
|
|
26416
26666
|
/** The workflow file */
|
|
26417
26667
|
file?: Maybe<WorkflowRunFile>;
|
|
26668
|
+
/** The Node ID of this object */
|
|
26418
26669
|
id: Scalars['ID']['output'];
|
|
26419
26670
|
/** The pending deployment requests of all check runs in this workflow run */
|
|
26420
26671
|
pendingDeploymentRequests: DeploymentRequestConnection;
|
|
@@ -26466,6 +26717,7 @@ type WorkflowRunEdge = {
|
|
|
26466
26717
|
/** An executed workflow file for a workflow run. */
|
|
26467
26718
|
type WorkflowRunFile = Node & UniformResourceLocatable & {
|
|
26468
26719
|
__typename?: 'WorkflowRunFile';
|
|
26720
|
+
/** The Node ID of this object */
|
|
26469
26721
|
id: Scalars['ID']['output'];
|
|
26470
26722
|
/** The path of the workflow file relative to its repository. */
|
|
26471
26723
|
path: Scalars['String']['output'];
|