github-schema 1.13.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/github-schema.d.cts +374 -87
- package/dist/github-schema.d.ts +374 -87
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +205 -90
- package/package.json +10 -10
package/github-schema.graphql
CHANGED
|
@@ -1233,7 +1233,7 @@ type AddedToProjectEvent implements Node {
|
|
|
1233
1233
|
"""
|
|
1234
1234
|
Identifies the primary key from the database.
|
|
1235
1235
|
"""
|
|
1236
|
-
databaseId: Int
|
|
1236
|
+
databaseId: Int @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
1237
1237
|
|
|
1238
1238
|
"""
|
|
1239
1239
|
The Node ID of the AddedToProjectEvent object
|
|
@@ -1248,12 +1248,12 @@ type AddedToProjectEvent implements Node {
|
|
|
1248
1248
|
"""
|
|
1249
1249
|
Project card referenced by this project event.
|
|
1250
1250
|
"""
|
|
1251
|
-
projectCard: ProjectCard
|
|
1251
|
+
projectCard: ProjectCard @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
1252
1252
|
|
|
1253
1253
|
"""
|
|
1254
1254
|
Column name referenced by this project event.
|
|
1255
1255
|
"""
|
|
1256
|
-
projectColumnName: String!
|
|
1256
|
+
projectColumnName: String! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
1257
1257
|
}
|
|
1258
1258
|
|
|
1259
1259
|
"""
|
|
@@ -6853,7 +6853,7 @@ type ConvertedNoteToIssueEvent implements Node {
|
|
|
6853
6853
|
"""
|
|
6854
6854
|
Project card referenced by this project event.
|
|
6855
6855
|
"""
|
|
6856
|
-
projectCard: ProjectCard
|
|
6856
|
+
projectCard: ProjectCard @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
6857
6857
|
|
|
6858
6858
|
"""
|
|
6859
6859
|
Column name referenced by this project event.
|
|
@@ -9222,6 +9222,21 @@ type CrossReferencedEvent implements Node & UniformResourceLocatable {
|
|
|
9222
9222
|
willCloseTarget: Boolean!
|
|
9223
9223
|
}
|
|
9224
9224
|
|
|
9225
|
+
"""
|
|
9226
|
+
The Common Vulnerability Scoring System
|
|
9227
|
+
"""
|
|
9228
|
+
type CvssSeverities {
|
|
9229
|
+
"""
|
|
9230
|
+
The CVSS v3 severity associated with this advisory
|
|
9231
|
+
"""
|
|
9232
|
+
cvssV3: CVSS
|
|
9233
|
+
|
|
9234
|
+
"""
|
|
9235
|
+
The CVSS v4 severity associated with this advisory
|
|
9236
|
+
"""
|
|
9237
|
+
cvssV4: CVSS
|
|
9238
|
+
}
|
|
9239
|
+
|
|
9225
9240
|
"""
|
|
9226
9241
|
An ISO-8601 encoded date string.
|
|
9227
9242
|
"""
|
|
@@ -10208,6 +10223,11 @@ type DependencyGraphDependency {
|
|
|
10208
10223
|
"""
|
|
10209
10224
|
packageName: String!
|
|
10210
10225
|
|
|
10226
|
+
"""
|
|
10227
|
+
Public preview: The relationship of the dependency. Can be direct, transitive, or unknown
|
|
10228
|
+
"""
|
|
10229
|
+
relationship: String!
|
|
10230
|
+
|
|
10211
10231
|
"""
|
|
10212
10232
|
The repository containing the package
|
|
10213
10233
|
"""
|
|
@@ -13097,11 +13117,51 @@ type Enterprise implements AnnouncementBannerI & Node {
|
|
|
13097
13117
|
"""
|
|
13098
13118
|
slug: String!
|
|
13099
13119
|
|
|
13120
|
+
"""
|
|
13121
|
+
Identifies the date and time when the object was last updated.
|
|
13122
|
+
"""
|
|
13123
|
+
updatedAt: DateTime!
|
|
13124
|
+
|
|
13100
13125
|
"""
|
|
13101
13126
|
The HTTP URL for this enterprise.
|
|
13102
13127
|
"""
|
|
13103
13128
|
url: URI!
|
|
13104
13129
|
|
|
13130
|
+
"""
|
|
13131
|
+
A list of repositories that belong to users. Only available for enterprises with Enterprise Managed Users.
|
|
13132
|
+
"""
|
|
13133
|
+
userNamespaceRepositories(
|
|
13134
|
+
"""
|
|
13135
|
+
Returns the elements in the list that come after the specified cursor.
|
|
13136
|
+
"""
|
|
13137
|
+
after: String
|
|
13138
|
+
|
|
13139
|
+
"""
|
|
13140
|
+
Returns the elements in the list that come before the specified cursor.
|
|
13141
|
+
"""
|
|
13142
|
+
before: String
|
|
13143
|
+
|
|
13144
|
+
"""
|
|
13145
|
+
Returns the first _n_ elements from the list.
|
|
13146
|
+
"""
|
|
13147
|
+
first: Int
|
|
13148
|
+
|
|
13149
|
+
"""
|
|
13150
|
+
Returns the last _n_ elements from the list.
|
|
13151
|
+
"""
|
|
13152
|
+
last: Int
|
|
13153
|
+
|
|
13154
|
+
"""
|
|
13155
|
+
Ordering options for repositories returned from the connection.
|
|
13156
|
+
"""
|
|
13157
|
+
orderBy: RepositoryOrder = {field: NAME, direction: ASC}
|
|
13158
|
+
|
|
13159
|
+
"""
|
|
13160
|
+
The search string to look for.
|
|
13161
|
+
"""
|
|
13162
|
+
query: String
|
|
13163
|
+
): UserNamespaceRepositoryConnection!
|
|
13164
|
+
|
|
13105
13165
|
"""
|
|
13106
13166
|
Is the current viewer an admin of this enterprise?
|
|
13107
13167
|
"""
|
|
@@ -22971,7 +23031,7 @@ type MovedColumnsInProjectEvent implements Node {
|
|
|
22971
23031
|
"""
|
|
22972
23032
|
Identifies the primary key from the database.
|
|
22973
23033
|
"""
|
|
22974
|
-
databaseId: Int
|
|
23034
|
+
databaseId: Int @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
22975
23035
|
|
|
22976
23036
|
"""
|
|
22977
23037
|
The Node ID of the MovedColumnsInProjectEvent object
|
|
@@ -22981,7 +23041,7 @@ type MovedColumnsInProjectEvent implements Node {
|
|
|
22981
23041
|
"""
|
|
22982
23042
|
Column name the issue or pull request was moved from.
|
|
22983
23043
|
"""
|
|
22984
|
-
previousProjectColumnName: String!
|
|
23044
|
+
previousProjectColumnName: String! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
22985
23045
|
|
|
22986
23046
|
"""
|
|
22987
23047
|
Project referenced by event.
|
|
@@ -22991,12 +23051,12 @@ type MovedColumnsInProjectEvent implements Node {
|
|
|
22991
23051
|
"""
|
|
22992
23052
|
Project card referenced by this project event.
|
|
22993
23053
|
"""
|
|
22994
|
-
projectCard: ProjectCard
|
|
23054
|
+
projectCard: ProjectCard @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
22995
23055
|
|
|
22996
23056
|
"""
|
|
22997
23057
|
Column name the issue or pull request was moved to.
|
|
22998
23058
|
"""
|
|
22999
|
-
projectColumnName: String!
|
|
23059
|
+
projectColumnName: String! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23000
23060
|
}
|
|
23001
23061
|
|
|
23002
23062
|
"""
|
|
@@ -23141,7 +23201,7 @@ type Mutation {
|
|
|
23141
23201
|
Parameters for AddProjectCard
|
|
23142
23202
|
"""
|
|
23143
23203
|
input: AddProjectCardInput!
|
|
23144
|
-
): AddProjectCardPayload
|
|
23204
|
+
): AddProjectCardPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23145
23205
|
|
|
23146
23206
|
"""
|
|
23147
23207
|
Adds a column to a Project.
|
|
@@ -23151,7 +23211,7 @@ type Mutation {
|
|
|
23151
23211
|
Parameters for AddProjectColumn
|
|
23152
23212
|
"""
|
|
23153
23213
|
input: AddProjectColumnInput!
|
|
23154
|
-
): AddProjectColumnPayload
|
|
23214
|
+
): AddProjectColumnPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23155
23215
|
|
|
23156
23216
|
"""
|
|
23157
23217
|
Creates a new draft issue and add it to a Project.
|
|
@@ -23373,7 +23433,7 @@ type Mutation {
|
|
|
23373
23433
|
Parameters for CloneProject
|
|
23374
23434
|
"""
|
|
23375
23435
|
input: CloneProjectInput!
|
|
23376
|
-
): CloneProjectPayload
|
|
23436
|
+
): CloneProjectPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23377
23437
|
|
|
23378
23438
|
"""
|
|
23379
23439
|
Create a new repository with the same files and directory structure as a template repository.
|
|
@@ -23423,7 +23483,7 @@ type Mutation {
|
|
|
23423
23483
|
Parameters for ConvertProjectCardNoteToIssue
|
|
23424
23484
|
"""
|
|
23425
23485
|
input: ConvertProjectCardNoteToIssueInput!
|
|
23426
|
-
): ConvertProjectCardNoteToIssuePayload
|
|
23486
|
+
): ConvertProjectCardNoteToIssuePayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23427
23487
|
|
|
23428
23488
|
"""
|
|
23429
23489
|
Converts a projectV2 draft issue item to an issue.
|
|
@@ -23659,7 +23719,7 @@ type Mutation {
|
|
|
23659
23719
|
Parameters for CreateProject
|
|
23660
23720
|
"""
|
|
23661
23721
|
input: CreateProjectInput!
|
|
23662
|
-
): CreateProjectPayload
|
|
23722
|
+
): CreateProjectPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23663
23723
|
|
|
23664
23724
|
"""
|
|
23665
23725
|
Creates a new project.
|
|
@@ -23930,7 +23990,7 @@ type Mutation {
|
|
|
23930
23990
|
Parameters for DeleteProject
|
|
23931
23991
|
"""
|
|
23932
23992
|
input: DeleteProjectInput!
|
|
23933
|
-
): DeleteProjectPayload
|
|
23993
|
+
): DeleteProjectPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23934
23994
|
|
|
23935
23995
|
"""
|
|
23936
23996
|
Deletes a project card.
|
|
@@ -23940,7 +24000,7 @@ type Mutation {
|
|
|
23940
24000
|
Parameters for DeleteProjectCard
|
|
23941
24001
|
"""
|
|
23942
24002
|
input: DeleteProjectCardInput!
|
|
23943
|
-
): DeleteProjectCardPayload
|
|
24003
|
+
): DeleteProjectCardPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23944
24004
|
|
|
23945
24005
|
"""
|
|
23946
24006
|
Deletes a project column.
|
|
@@ -23950,7 +24010,7 @@ type Mutation {
|
|
|
23950
24010
|
Parameters for DeleteProjectColumn
|
|
23951
24011
|
"""
|
|
23952
24012
|
input: DeleteProjectColumnInput!
|
|
23953
|
-
): DeleteProjectColumnPayload
|
|
24013
|
+
): DeleteProjectColumnPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
23954
24014
|
|
|
23955
24015
|
"""
|
|
23956
24016
|
Delete a project.
|
|
@@ -24190,7 +24250,7 @@ type Mutation {
|
|
|
24190
24250
|
Parameters for ImportProject
|
|
24191
24251
|
"""
|
|
24192
24252
|
input: ImportProjectInput!
|
|
24193
|
-
): ImportProjectPayload
|
|
24253
|
+
): ImportProjectPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
24194
24254
|
|
|
24195
24255
|
"""
|
|
24196
24256
|
Invite someone to become an administrator of the enterprise.
|
|
@@ -24240,7 +24300,7 @@ type Mutation {
|
|
|
24240
24300
|
Parameters for LinkRepositoryToProject
|
|
24241
24301
|
"""
|
|
24242
24302
|
input: LinkRepositoryToProjectInput!
|
|
24243
|
-
): LinkRepositoryToProjectPayload
|
|
24303
|
+
): LinkRepositoryToProjectPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
24244
24304
|
|
|
24245
24305
|
"""
|
|
24246
24306
|
Lock a lockable object
|
|
@@ -24330,7 +24390,7 @@ type Mutation {
|
|
|
24330
24390
|
Parameters for MoveProjectCard
|
|
24331
24391
|
"""
|
|
24332
24392
|
input: MoveProjectCardInput!
|
|
24333
|
-
): MoveProjectCardPayload
|
|
24393
|
+
): MoveProjectCardPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
24334
24394
|
|
|
24335
24395
|
"""
|
|
24336
24396
|
Moves a project column to another place.
|
|
@@ -24340,7 +24400,7 @@ type Mutation {
|
|
|
24340
24400
|
Parameters for MoveProjectColumn
|
|
24341
24401
|
"""
|
|
24342
24402
|
input: MoveProjectColumnInput!
|
|
24343
|
-
): MoveProjectColumnPayload
|
|
24403
|
+
): MoveProjectColumnPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
24344
24404
|
|
|
24345
24405
|
"""
|
|
24346
24406
|
Pin an environment to a repository
|
|
@@ -24801,7 +24861,7 @@ type Mutation {
|
|
|
24801
24861
|
Parameters for UnlinkRepositoryFromProject
|
|
24802
24862
|
"""
|
|
24803
24863
|
input: UnlinkRepositoryFromProjectInput!
|
|
24804
|
-
): UnlinkRepositoryFromProjectPayload
|
|
24864
|
+
): UnlinkRepositoryFromProjectPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
24805
24865
|
|
|
24806
24866
|
"""
|
|
24807
24867
|
Unlock a lockable object
|
|
@@ -25244,7 +25304,7 @@ type Mutation {
|
|
|
25244
25304
|
Parameters for UpdateProject
|
|
25245
25305
|
"""
|
|
25246
25306
|
input: UpdateProjectInput!
|
|
25247
|
-
): UpdateProjectPayload
|
|
25307
|
+
): UpdateProjectPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
25248
25308
|
|
|
25249
25309
|
"""
|
|
25250
25310
|
Updates an existing project card.
|
|
@@ -25254,7 +25314,7 @@ type Mutation {
|
|
|
25254
25314
|
Parameters for UpdateProjectCard
|
|
25255
25315
|
"""
|
|
25256
25316
|
input: UpdateProjectCardInput!
|
|
25257
|
-
): UpdateProjectCardPayload
|
|
25317
|
+
): UpdateProjectCardPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
25258
25318
|
|
|
25259
25319
|
"""
|
|
25260
25320
|
Updates an existing project column.
|
|
@@ -25264,7 +25324,7 @@ type Mutation {
|
|
|
25264
25324
|
Parameters for UpdateProjectColumn
|
|
25265
25325
|
"""
|
|
25266
25326
|
input: UpdateProjectColumnInput!
|
|
25267
|
-
): UpdateProjectColumnPayload
|
|
25327
|
+
): UpdateProjectColumnPayload @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
25268
25328
|
|
|
25269
25329
|
"""
|
|
25270
25330
|
Updates an existing project.
|
|
@@ -29775,7 +29835,7 @@ type Organization implements Actor & AnnouncementBannerI & MemberStatusable & No
|
|
|
29775
29835
|
The project number to find.
|
|
29776
29836
|
"""
|
|
29777
29837
|
number: Int!
|
|
29778
|
-
): Project
|
|
29838
|
+
): Project @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
29779
29839
|
|
|
29780
29840
|
"""
|
|
29781
29841
|
Find a project by number.
|
|
@@ -29825,7 +29885,7 @@ type Organization implements Actor & AnnouncementBannerI & MemberStatusable & No
|
|
|
29825
29885
|
A list of states to filter the projects by.
|
|
29826
29886
|
"""
|
|
29827
29887
|
states: [ProjectState!]
|
|
29828
|
-
): ProjectConnection!
|
|
29888
|
+
): ProjectConnection! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
29829
29889
|
|
|
29830
29890
|
"""
|
|
29831
29891
|
The HTTP path listing organization's projects
|
|
@@ -32993,12 +33053,12 @@ type Project implements Closable & Node & Updatable {
|
|
|
32993
33053
|
"""
|
|
32994
33054
|
The project's description body.
|
|
32995
33055
|
"""
|
|
32996
|
-
body: String
|
|
33056
|
+
body: String @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
32997
33057
|
|
|
32998
33058
|
"""
|
|
32999
33059
|
The projects description body rendered to HTML.
|
|
33000
33060
|
"""
|
|
33001
|
-
bodyHTML: HTML!
|
|
33061
|
+
bodyHTML: HTML! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33002
33062
|
|
|
33003
33063
|
"""
|
|
33004
33064
|
Indicates if the object is closed (definition of closed may depend on type)
|
|
@@ -33033,42 +33093,42 @@ type Project implements Closable & Node & Updatable {
|
|
|
33033
33093
|
Returns the last _n_ elements from the list.
|
|
33034
33094
|
"""
|
|
33035
33095
|
last: Int
|
|
33036
|
-
): ProjectColumnConnection!
|
|
33096
|
+
): ProjectColumnConnection! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33037
33097
|
|
|
33038
33098
|
"""
|
|
33039
33099
|
Identifies the date and time when the object was created.
|
|
33040
33100
|
"""
|
|
33041
|
-
createdAt: DateTime!
|
|
33101
|
+
createdAt: DateTime! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33042
33102
|
|
|
33043
33103
|
"""
|
|
33044
33104
|
The actor who originally created the project.
|
|
33045
33105
|
"""
|
|
33046
|
-
creator: Actor
|
|
33106
|
+
creator: Actor @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33047
33107
|
|
|
33048
33108
|
"""
|
|
33049
33109
|
Identifies the primary key from the database.
|
|
33050
33110
|
"""
|
|
33051
|
-
databaseId: Int
|
|
33111
|
+
databaseId: Int @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33052
33112
|
|
|
33053
33113
|
"""
|
|
33054
33114
|
The Node ID of the Project object
|
|
33055
33115
|
"""
|
|
33056
|
-
id: ID!
|
|
33116
|
+
id: ID! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33057
33117
|
|
|
33058
33118
|
"""
|
|
33059
33119
|
The project's name.
|
|
33060
33120
|
"""
|
|
33061
|
-
name: String!
|
|
33121
|
+
name: String! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33062
33122
|
|
|
33063
33123
|
"""
|
|
33064
33124
|
The project's number.
|
|
33065
33125
|
"""
|
|
33066
|
-
number: Int!
|
|
33126
|
+
number: Int! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33067
33127
|
|
|
33068
33128
|
"""
|
|
33069
33129
|
The project's owner. Currently limited to repositories, organizations, and users.
|
|
33070
33130
|
"""
|
|
33071
|
-
owner: ProjectOwner!
|
|
33131
|
+
owner: ProjectOwner! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33072
33132
|
|
|
33073
33133
|
"""
|
|
33074
33134
|
List of pending cards in this project
|
|
@@ -33098,32 +33158,32 @@ type Project implements Closable & Node & Updatable {
|
|
|
33098
33158
|
Returns the last _n_ elements from the list.
|
|
33099
33159
|
"""
|
|
33100
33160
|
last: Int
|
|
33101
|
-
): ProjectCardConnection!
|
|
33161
|
+
): ProjectCardConnection! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33102
33162
|
|
|
33103
33163
|
"""
|
|
33104
33164
|
Project progress details.
|
|
33105
33165
|
"""
|
|
33106
|
-
progress: ProjectProgress!
|
|
33166
|
+
progress: ProjectProgress! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33107
33167
|
|
|
33108
33168
|
"""
|
|
33109
33169
|
The HTTP path for this project
|
|
33110
33170
|
"""
|
|
33111
|
-
resourcePath: URI!
|
|
33171
|
+
resourcePath: URI! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33112
33172
|
|
|
33113
33173
|
"""
|
|
33114
33174
|
Whether the project is open or closed.
|
|
33115
33175
|
"""
|
|
33116
|
-
state: ProjectState!
|
|
33176
|
+
state: ProjectState! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33117
33177
|
|
|
33118
33178
|
"""
|
|
33119
33179
|
Identifies the date and time when the object was last updated.
|
|
33120
33180
|
"""
|
|
33121
|
-
updatedAt: DateTime!
|
|
33181
|
+
updatedAt: DateTime! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33122
33182
|
|
|
33123
33183
|
"""
|
|
33124
33184
|
The HTTP URL for this project
|
|
33125
33185
|
"""
|
|
33126
|
-
url: URI!
|
|
33186
|
+
url: URI! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33127
33187
|
|
|
33128
33188
|
"""
|
|
33129
33189
|
Indicates if the object can be closed by the viewer.
|
|
@@ -33151,67 +33211,67 @@ type ProjectCard implements Node {
|
|
|
33151
33211
|
in a pending state and has yet to be associated with a column. Once cards are
|
|
33152
33212
|
associated with a column, they will not become pending in the future.
|
|
33153
33213
|
"""
|
|
33154
|
-
column: ProjectColumn
|
|
33214
|
+
column: ProjectColumn @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33155
33215
|
|
|
33156
33216
|
"""
|
|
33157
33217
|
The card content item
|
|
33158
33218
|
"""
|
|
33159
|
-
content: ProjectCardItem
|
|
33219
|
+
content: ProjectCardItem @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33160
33220
|
|
|
33161
33221
|
"""
|
|
33162
33222
|
Identifies the date and time when the object was created.
|
|
33163
33223
|
"""
|
|
33164
|
-
createdAt: DateTime!
|
|
33224
|
+
createdAt: DateTime! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33165
33225
|
|
|
33166
33226
|
"""
|
|
33167
33227
|
The actor who created this card
|
|
33168
33228
|
"""
|
|
33169
|
-
creator: Actor
|
|
33229
|
+
creator: Actor @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33170
33230
|
|
|
33171
33231
|
"""
|
|
33172
33232
|
Identifies the primary key from the database.
|
|
33173
33233
|
"""
|
|
33174
|
-
databaseId: Int
|
|
33234
|
+
databaseId: Int @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33175
33235
|
|
|
33176
33236
|
"""
|
|
33177
33237
|
The Node ID of the ProjectCard object
|
|
33178
33238
|
"""
|
|
33179
|
-
id: ID!
|
|
33239
|
+
id: ID! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33180
33240
|
|
|
33181
33241
|
"""
|
|
33182
33242
|
Whether the card is archived
|
|
33183
33243
|
"""
|
|
33184
|
-
isArchived: Boolean!
|
|
33244
|
+
isArchived: Boolean! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33185
33245
|
|
|
33186
33246
|
"""
|
|
33187
33247
|
The card note
|
|
33188
33248
|
"""
|
|
33189
|
-
note: String
|
|
33249
|
+
note: String @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33190
33250
|
|
|
33191
33251
|
"""
|
|
33192
33252
|
The project that contains this card.
|
|
33193
33253
|
"""
|
|
33194
|
-
project: Project!
|
|
33254
|
+
project: Project! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33195
33255
|
|
|
33196
33256
|
"""
|
|
33197
33257
|
The HTTP path for this card
|
|
33198
33258
|
"""
|
|
33199
|
-
resourcePath: URI!
|
|
33259
|
+
resourcePath: URI! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33200
33260
|
|
|
33201
33261
|
"""
|
|
33202
33262
|
The state of ProjectCard
|
|
33203
33263
|
"""
|
|
33204
|
-
state: ProjectCardState
|
|
33264
|
+
state: ProjectCardState @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33205
33265
|
|
|
33206
33266
|
"""
|
|
33207
33267
|
Identifies the date and time when the object was last updated.
|
|
33208
33268
|
"""
|
|
33209
|
-
updatedAt: DateTime!
|
|
33269
|
+
updatedAt: DateTime! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33210
33270
|
|
|
33211
33271
|
"""
|
|
33212
33272
|
The HTTP URL for this card
|
|
33213
33273
|
"""
|
|
33214
|
-
url: URI!
|
|
33274
|
+
url: URI! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33215
33275
|
}
|
|
33216
33276
|
|
|
33217
33277
|
"""
|
|
@@ -33341,52 +33401,52 @@ type ProjectColumn implements Node {
|
|
|
33341
33401
|
Returns the last _n_ elements from the list.
|
|
33342
33402
|
"""
|
|
33343
33403
|
last: Int
|
|
33344
|
-
): ProjectCardConnection!
|
|
33404
|
+
): ProjectCardConnection! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33345
33405
|
|
|
33346
33406
|
"""
|
|
33347
33407
|
Identifies the date and time when the object was created.
|
|
33348
33408
|
"""
|
|
33349
|
-
createdAt: DateTime!
|
|
33409
|
+
createdAt: DateTime! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33350
33410
|
|
|
33351
33411
|
"""
|
|
33352
33412
|
Identifies the primary key from the database.
|
|
33353
33413
|
"""
|
|
33354
|
-
databaseId: Int
|
|
33414
|
+
databaseId: Int @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33355
33415
|
|
|
33356
33416
|
"""
|
|
33357
33417
|
The Node ID of the ProjectColumn object
|
|
33358
33418
|
"""
|
|
33359
|
-
id: ID!
|
|
33419
|
+
id: ID! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33360
33420
|
|
|
33361
33421
|
"""
|
|
33362
33422
|
The project column's name.
|
|
33363
33423
|
"""
|
|
33364
|
-
name: String!
|
|
33424
|
+
name: String! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33365
33425
|
|
|
33366
33426
|
"""
|
|
33367
33427
|
The project that contains this column.
|
|
33368
33428
|
"""
|
|
33369
|
-
project: Project!
|
|
33429
|
+
project: Project! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33370
33430
|
|
|
33371
33431
|
"""
|
|
33372
33432
|
The semantic purpose of the column
|
|
33373
33433
|
"""
|
|
33374
|
-
purpose: ProjectColumnPurpose
|
|
33434
|
+
purpose: ProjectColumnPurpose @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33375
33435
|
|
|
33376
33436
|
"""
|
|
33377
33437
|
The HTTP path for this project column
|
|
33378
33438
|
"""
|
|
33379
|
-
resourcePath: URI!
|
|
33439
|
+
resourcePath: URI! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33380
33440
|
|
|
33381
33441
|
"""
|
|
33382
33442
|
Identifies the date and time when the object was last updated.
|
|
33383
33443
|
"""
|
|
33384
|
-
updatedAt: DateTime!
|
|
33444
|
+
updatedAt: DateTime! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33385
33445
|
|
|
33386
33446
|
"""
|
|
33387
33447
|
The HTTP URL for this project column
|
|
33388
33448
|
"""
|
|
33389
|
-
url: URI!
|
|
33449
|
+
url: URI! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33390
33450
|
}
|
|
33391
33451
|
|
|
33392
33452
|
"""
|
|
@@ -33561,7 +33621,7 @@ interface ProjectOwner {
|
|
|
33561
33621
|
The project number to find.
|
|
33562
33622
|
"""
|
|
33563
33623
|
number: Int!
|
|
33564
|
-
): Project
|
|
33624
|
+
): Project @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33565
33625
|
|
|
33566
33626
|
"""
|
|
33567
33627
|
A list of projects under the owner.
|
|
@@ -33601,7 +33661,7 @@ interface ProjectOwner {
|
|
|
33601
33661
|
A list of states to filter the projects by.
|
|
33602
33662
|
"""
|
|
33603
33663
|
states: [ProjectState!]
|
|
33604
|
-
): ProjectConnection!
|
|
33664
|
+
): ProjectConnection! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33605
33665
|
|
|
33606
33666
|
"""
|
|
33607
33667
|
The HTTP path listing owners projects
|
|
@@ -33626,37 +33686,37 @@ type ProjectProgress {
|
|
|
33626
33686
|
"""
|
|
33627
33687
|
The number of done cards.
|
|
33628
33688
|
"""
|
|
33629
|
-
doneCount: Int!
|
|
33689
|
+
doneCount: Int! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33630
33690
|
|
|
33631
33691
|
"""
|
|
33632
33692
|
The percentage of done cards.
|
|
33633
33693
|
"""
|
|
33634
|
-
donePercentage: Float!
|
|
33694
|
+
donePercentage: Float! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33635
33695
|
|
|
33636
33696
|
"""
|
|
33637
33697
|
Whether progress tracking is enabled and cards with purpose exist for this project
|
|
33638
33698
|
"""
|
|
33639
|
-
enabled: Boolean!
|
|
33699
|
+
enabled: Boolean! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33640
33700
|
|
|
33641
33701
|
"""
|
|
33642
33702
|
The number of in-progress cards.
|
|
33643
33703
|
"""
|
|
33644
|
-
inProgressCount: Int!
|
|
33704
|
+
inProgressCount: Int! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33645
33705
|
|
|
33646
33706
|
"""
|
|
33647
33707
|
The percentage of in-progress cards.
|
|
33648
33708
|
"""
|
|
33649
|
-
inProgressPercentage: Float!
|
|
33709
|
+
inProgressPercentage: Float! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33650
33710
|
|
|
33651
33711
|
"""
|
|
33652
33712
|
The number of to do cards.
|
|
33653
33713
|
"""
|
|
33654
|
-
todoCount: Int!
|
|
33714
|
+
todoCount: Int! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33655
33715
|
|
|
33656
33716
|
"""
|
|
33657
33717
|
The percentage of to do cards.
|
|
33658
33718
|
"""
|
|
33659
|
-
todoPercentage: Float!
|
|
33719
|
+
todoPercentage: Float! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
33660
33720
|
}
|
|
33661
33721
|
|
|
33662
33722
|
"""
|
|
@@ -34413,6 +34473,11 @@ enum ProjectV2FieldType {
|
|
|
34413
34473
|
"""
|
|
34414
34474
|
NUMBER
|
|
34415
34475
|
|
|
34476
|
+
"""
|
|
34477
|
+
Parent issue
|
|
34478
|
+
"""
|
|
34479
|
+
PARENT_ISSUE
|
|
34480
|
+
|
|
34416
34481
|
"""
|
|
34417
34482
|
Repository
|
|
34418
34483
|
"""
|
|
@@ -34428,6 +34493,11 @@ enum ProjectV2FieldType {
|
|
|
34428
34493
|
"""
|
|
34429
34494
|
SINGLE_SELECT
|
|
34430
34495
|
|
|
34496
|
+
"""
|
|
34497
|
+
Sub-issues progress
|
|
34498
|
+
"""
|
|
34499
|
+
SUB_ISSUES_PROGRESS
|
|
34500
|
+
|
|
34431
34501
|
"""
|
|
34432
34502
|
Text
|
|
34433
34503
|
"""
|
|
@@ -39766,12 +39836,12 @@ type Query implements Node {
|
|
|
39766
39836
|
enterpriseSlug: String!
|
|
39767
39837
|
|
|
39768
39838
|
"""
|
|
39769
|
-
The role for the
|
|
39839
|
+
The role for the enterprise member invitation.
|
|
39770
39840
|
"""
|
|
39771
39841
|
role: EnterpriseAdministratorRole!
|
|
39772
39842
|
|
|
39773
39843
|
"""
|
|
39774
|
-
The login of the user invited to join the
|
|
39844
|
+
The login of the user invited to join the enterprise.
|
|
39775
39845
|
"""
|
|
39776
39846
|
userLogin: String!
|
|
39777
39847
|
): EnterpriseAdministratorInvitation
|
|
@@ -39796,7 +39866,7 @@ type Query implements Node {
|
|
|
39796
39866
|
enterpriseSlug: String!
|
|
39797
39867
|
|
|
39798
39868
|
"""
|
|
39799
|
-
The login of the user invited to join the
|
|
39869
|
+
The login of the user invited to join the enterprise.
|
|
39800
39870
|
"""
|
|
39801
39871
|
userLogin: String!
|
|
39802
39872
|
): EnterpriseMemberInvitation
|
|
@@ -42100,7 +42170,7 @@ type RemovedFromProjectEvent implements Node {
|
|
|
42100
42170
|
"""
|
|
42101
42171
|
Identifies the primary key from the database.
|
|
42102
42172
|
"""
|
|
42103
|
-
databaseId: Int
|
|
42173
|
+
databaseId: Int @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
42104
42174
|
|
|
42105
42175
|
"""
|
|
42106
42176
|
The Node ID of the RemovedFromProjectEvent object
|
|
@@ -42115,7 +42185,7 @@ type RemovedFromProjectEvent implements Node {
|
|
|
42115
42185
|
"""
|
|
42116
42186
|
Column name referenced by this project event.
|
|
42117
42187
|
"""
|
|
42118
|
-
projectColumnName: String!
|
|
42188
|
+
projectColumnName: String! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
42119
42189
|
}
|
|
42120
42190
|
|
|
42121
42191
|
"""
|
|
@@ -42438,7 +42508,7 @@ The privacy of a repository
|
|
|
42438
42508
|
"""
|
|
42439
42509
|
enum RepoAccessAuditEntryVisibility {
|
|
42440
42510
|
"""
|
|
42441
|
-
The repository is visible only to users in the same
|
|
42511
|
+
The repository is visible only to users in the same enterprise.
|
|
42442
42512
|
"""
|
|
42443
42513
|
INTERNAL
|
|
42444
42514
|
|
|
@@ -42578,7 +42648,7 @@ The privacy of a repository
|
|
|
42578
42648
|
"""
|
|
42579
42649
|
enum RepoAddMemberAuditEntryVisibility {
|
|
42580
42650
|
"""
|
|
42581
|
-
The repository is visible only to users in the same
|
|
42651
|
+
The repository is visible only to users in the same enterprise.
|
|
42582
42652
|
"""
|
|
42583
42653
|
INTERNAL
|
|
42584
42654
|
|
|
@@ -42843,7 +42913,7 @@ The privacy of a repository
|
|
|
42843
42913
|
"""
|
|
42844
42914
|
enum RepoArchivedAuditEntryVisibility {
|
|
42845
42915
|
"""
|
|
42846
|
-
The repository is visible only to users in the same
|
|
42916
|
+
The repository is visible only to users in the same enterprise.
|
|
42847
42917
|
"""
|
|
42848
42918
|
INTERNAL
|
|
42849
42919
|
|
|
@@ -44288,7 +44358,7 @@ The privacy of a repository
|
|
|
44288
44358
|
"""
|
|
44289
44359
|
enum RepoCreateAuditEntryVisibility {
|
|
44290
44360
|
"""
|
|
44291
|
-
The repository is visible only to users in the same
|
|
44361
|
+
The repository is visible only to users in the same enterprise.
|
|
44292
44362
|
"""
|
|
44293
44363
|
INTERNAL
|
|
44294
44364
|
|
|
@@ -44428,7 +44498,7 @@ The privacy of a repository
|
|
|
44428
44498
|
"""
|
|
44429
44499
|
enum RepoDestroyAuditEntryVisibility {
|
|
44430
44500
|
"""
|
|
44431
|
-
The repository is visible only to users in the same
|
|
44501
|
+
The repository is visible only to users in the same enterprise.
|
|
44432
44502
|
"""
|
|
44433
44503
|
INTERNAL
|
|
44434
44504
|
|
|
@@ -44568,7 +44638,7 @@ The privacy of a repository
|
|
|
44568
44638
|
"""
|
|
44569
44639
|
enum RepoRemoveMemberAuditEntryVisibility {
|
|
44570
44640
|
"""
|
|
44571
|
-
The repository is visible only to users in the same
|
|
44641
|
+
The repository is visible only to users in the same enterprise.
|
|
44572
44642
|
"""
|
|
44573
44643
|
INTERNAL
|
|
44574
44644
|
|
|
@@ -45828,7 +45898,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
45828
45898
|
The project number to find.
|
|
45829
45899
|
"""
|
|
45830
45900
|
number: Int!
|
|
45831
|
-
): Project
|
|
45901
|
+
): Project @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
45832
45902
|
|
|
45833
45903
|
"""
|
|
45834
45904
|
Finds and returns the Project according to the provided Project number.
|
|
@@ -45878,7 +45948,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
45878
45948
|
A list of states to filter the projects by.
|
|
45879
45949
|
"""
|
|
45880
45950
|
states: [ProjectState!]
|
|
45881
|
-
): ProjectConnection!
|
|
45951
|
+
): ProjectConnection! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
45882
45952
|
|
|
45883
45953
|
"""
|
|
45884
45954
|
The HTTP path listing the repository's projects
|
|
@@ -48400,7 +48470,7 @@ The repository's visibility level.
|
|
|
48400
48470
|
"""
|
|
48401
48471
|
enum RepositoryVisibility {
|
|
48402
48472
|
"""
|
|
48403
|
-
The repository is visible only to users in the same
|
|
48473
|
+
The repository is visible only to users in the same enterprise.
|
|
48404
48474
|
"""
|
|
48405
48475
|
INTERNAL
|
|
48406
48476
|
|
|
@@ -50068,6 +50138,11 @@ type SecurityAdvisory implements Node {
|
|
|
50068
50138
|
"""
|
|
50069
50139
|
cvss: CVSS! @deprecated(reason: "`cvss` will be removed. New `cvss_severities` field will now contain both `cvss_v3` and `cvss_v4` properties. Removal on 2025-10-01 UTC.")
|
|
50070
50140
|
|
|
50141
|
+
"""
|
|
50142
|
+
The CVSS associated with this advisory
|
|
50143
|
+
"""
|
|
50144
|
+
cvssSeverities: CvssSeverities!
|
|
50145
|
+
|
|
50071
50146
|
"""
|
|
50072
50147
|
CWEs associated with this Advisory
|
|
50073
50148
|
"""
|
|
@@ -61960,7 +62035,7 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
|
|
61960
62035
|
The project number to find.
|
|
61961
62036
|
"""
|
|
61962
62037
|
number: Int!
|
|
61963
|
-
): Project
|
|
62038
|
+
): Project @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
61964
62039
|
|
|
61965
62040
|
"""
|
|
61966
62041
|
Find a project by number.
|
|
@@ -62010,7 +62085,7 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
|
|
62010
62085
|
A list of states to filter the projects by.
|
|
62011
62086
|
"""
|
|
62012
62087
|
states: [ProjectState!]
|
|
62013
|
-
): ProjectConnection!
|
|
62088
|
+
): ProjectConnection! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
62014
62089
|
|
|
62015
62090
|
"""
|
|
62016
62091
|
The HTTP path listing user's projects
|
|
@@ -63363,6 +63438,46 @@ type UserNamespaceRepository implements Node {
|
|
|
63363
63438
|
repository: RepositoryInfo
|
|
63364
63439
|
}
|
|
63365
63440
|
|
|
63441
|
+
"""
|
|
63442
|
+
A list of repositories owned by users in an enterprise with Enterprise Managed Users.
|
|
63443
|
+
"""
|
|
63444
|
+
type UserNamespaceRepositoryConnection {
|
|
63445
|
+
"""
|
|
63446
|
+
A list of edges.
|
|
63447
|
+
"""
|
|
63448
|
+
edges: [UserNamespaceRepositoryEdge]
|
|
63449
|
+
|
|
63450
|
+
"""
|
|
63451
|
+
A list of nodes.
|
|
63452
|
+
"""
|
|
63453
|
+
nodes: [UserNamespaceRepository]
|
|
63454
|
+
|
|
63455
|
+
"""
|
|
63456
|
+
Information to aid in pagination.
|
|
63457
|
+
"""
|
|
63458
|
+
pageInfo: PageInfo!
|
|
63459
|
+
|
|
63460
|
+
"""
|
|
63461
|
+
Identifies the total count of items in the connection.
|
|
63462
|
+
"""
|
|
63463
|
+
totalCount: Int!
|
|
63464
|
+
}
|
|
63465
|
+
|
|
63466
|
+
"""
|
|
63467
|
+
An edge in a connection.
|
|
63468
|
+
"""
|
|
63469
|
+
type UserNamespaceRepositoryEdge {
|
|
63470
|
+
"""
|
|
63471
|
+
A cursor for use in pagination.
|
|
63472
|
+
"""
|
|
63473
|
+
cursor: String!
|
|
63474
|
+
|
|
63475
|
+
"""
|
|
63476
|
+
The item at the end of the edge.
|
|
63477
|
+
"""
|
|
63478
|
+
node: UserNamespaceRepository
|
|
63479
|
+
}
|
|
63480
|
+
|
|
63366
63481
|
"""
|
|
63367
63482
|
The user's description of what they're currently doing.
|
|
63368
63483
|
"""
|