github-schema 1.13.1 → 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 +323 -79
- package/dist/github-schema.d.ts +323 -79
- package/github-schema.graphql +95 -80
- 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.
|
|
@@ -13117,6 +13117,11 @@ type Enterprise implements AnnouncementBannerI & Node {
|
|
|
13117
13117
|
"""
|
|
13118
13118
|
slug: String!
|
|
13119
13119
|
|
|
13120
|
+
"""
|
|
13121
|
+
Identifies the date and time when the object was last updated.
|
|
13122
|
+
"""
|
|
13123
|
+
updatedAt: DateTime!
|
|
13124
|
+
|
|
13120
13125
|
"""
|
|
13121
13126
|
The HTTP URL for this enterprise.
|
|
13122
13127
|
"""
|
|
@@ -23026,7 +23031,7 @@ type MovedColumnsInProjectEvent implements Node {
|
|
|
23026
23031
|
"""
|
|
23027
23032
|
Identifies the primary key from the database.
|
|
23028
23033
|
"""
|
|
23029
|
-
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.")
|
|
23030
23035
|
|
|
23031
23036
|
"""
|
|
23032
23037
|
The Node ID of the MovedColumnsInProjectEvent object
|
|
@@ -23036,7 +23041,7 @@ type MovedColumnsInProjectEvent implements Node {
|
|
|
23036
23041
|
"""
|
|
23037
23042
|
Column name the issue or pull request was moved from.
|
|
23038
23043
|
"""
|
|
23039
|
-
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.")
|
|
23040
23045
|
|
|
23041
23046
|
"""
|
|
23042
23047
|
Project referenced by event.
|
|
@@ -23046,12 +23051,12 @@ type MovedColumnsInProjectEvent implements Node {
|
|
|
23046
23051
|
"""
|
|
23047
23052
|
Project card referenced by this project event.
|
|
23048
23053
|
"""
|
|
23049
|
-
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.")
|
|
23050
23055
|
|
|
23051
23056
|
"""
|
|
23052
23057
|
Column name the issue or pull request was moved to.
|
|
23053
23058
|
"""
|
|
23054
|
-
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.")
|
|
23055
23060
|
}
|
|
23056
23061
|
|
|
23057
23062
|
"""
|
|
@@ -23196,7 +23201,7 @@ type Mutation {
|
|
|
23196
23201
|
Parameters for AddProjectCard
|
|
23197
23202
|
"""
|
|
23198
23203
|
input: AddProjectCardInput!
|
|
23199
|
-
): 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.")
|
|
23200
23205
|
|
|
23201
23206
|
"""
|
|
23202
23207
|
Adds a column to a Project.
|
|
@@ -23206,7 +23211,7 @@ type Mutation {
|
|
|
23206
23211
|
Parameters for AddProjectColumn
|
|
23207
23212
|
"""
|
|
23208
23213
|
input: AddProjectColumnInput!
|
|
23209
|
-
): 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.")
|
|
23210
23215
|
|
|
23211
23216
|
"""
|
|
23212
23217
|
Creates a new draft issue and add it to a Project.
|
|
@@ -23428,7 +23433,7 @@ type Mutation {
|
|
|
23428
23433
|
Parameters for CloneProject
|
|
23429
23434
|
"""
|
|
23430
23435
|
input: CloneProjectInput!
|
|
23431
|
-
): 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.")
|
|
23432
23437
|
|
|
23433
23438
|
"""
|
|
23434
23439
|
Create a new repository with the same files and directory structure as a template repository.
|
|
@@ -23478,7 +23483,7 @@ type Mutation {
|
|
|
23478
23483
|
Parameters for ConvertProjectCardNoteToIssue
|
|
23479
23484
|
"""
|
|
23480
23485
|
input: ConvertProjectCardNoteToIssueInput!
|
|
23481
|
-
): 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.")
|
|
23482
23487
|
|
|
23483
23488
|
"""
|
|
23484
23489
|
Converts a projectV2 draft issue item to an issue.
|
|
@@ -23714,7 +23719,7 @@ type Mutation {
|
|
|
23714
23719
|
Parameters for CreateProject
|
|
23715
23720
|
"""
|
|
23716
23721
|
input: CreateProjectInput!
|
|
23717
|
-
): 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.")
|
|
23718
23723
|
|
|
23719
23724
|
"""
|
|
23720
23725
|
Creates a new project.
|
|
@@ -23985,7 +23990,7 @@ type Mutation {
|
|
|
23985
23990
|
Parameters for DeleteProject
|
|
23986
23991
|
"""
|
|
23987
23992
|
input: DeleteProjectInput!
|
|
23988
|
-
): 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.")
|
|
23989
23994
|
|
|
23990
23995
|
"""
|
|
23991
23996
|
Deletes a project card.
|
|
@@ -23995,7 +24000,7 @@ type Mutation {
|
|
|
23995
24000
|
Parameters for DeleteProjectCard
|
|
23996
24001
|
"""
|
|
23997
24002
|
input: DeleteProjectCardInput!
|
|
23998
|
-
): 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.")
|
|
23999
24004
|
|
|
24000
24005
|
"""
|
|
24001
24006
|
Deletes a project column.
|
|
@@ -24005,7 +24010,7 @@ type Mutation {
|
|
|
24005
24010
|
Parameters for DeleteProjectColumn
|
|
24006
24011
|
"""
|
|
24007
24012
|
input: DeleteProjectColumnInput!
|
|
24008
|
-
): 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.")
|
|
24009
24014
|
|
|
24010
24015
|
"""
|
|
24011
24016
|
Delete a project.
|
|
@@ -24245,7 +24250,7 @@ type Mutation {
|
|
|
24245
24250
|
Parameters for ImportProject
|
|
24246
24251
|
"""
|
|
24247
24252
|
input: ImportProjectInput!
|
|
24248
|
-
): 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.")
|
|
24249
24254
|
|
|
24250
24255
|
"""
|
|
24251
24256
|
Invite someone to become an administrator of the enterprise.
|
|
@@ -24295,7 +24300,7 @@ type Mutation {
|
|
|
24295
24300
|
Parameters for LinkRepositoryToProject
|
|
24296
24301
|
"""
|
|
24297
24302
|
input: LinkRepositoryToProjectInput!
|
|
24298
|
-
): 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.")
|
|
24299
24304
|
|
|
24300
24305
|
"""
|
|
24301
24306
|
Lock a lockable object
|
|
@@ -24385,7 +24390,7 @@ type Mutation {
|
|
|
24385
24390
|
Parameters for MoveProjectCard
|
|
24386
24391
|
"""
|
|
24387
24392
|
input: MoveProjectCardInput!
|
|
24388
|
-
): 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.")
|
|
24389
24394
|
|
|
24390
24395
|
"""
|
|
24391
24396
|
Moves a project column to another place.
|
|
@@ -24395,7 +24400,7 @@ type Mutation {
|
|
|
24395
24400
|
Parameters for MoveProjectColumn
|
|
24396
24401
|
"""
|
|
24397
24402
|
input: MoveProjectColumnInput!
|
|
24398
|
-
): 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.")
|
|
24399
24404
|
|
|
24400
24405
|
"""
|
|
24401
24406
|
Pin an environment to a repository
|
|
@@ -24856,7 +24861,7 @@ type Mutation {
|
|
|
24856
24861
|
Parameters for UnlinkRepositoryFromProject
|
|
24857
24862
|
"""
|
|
24858
24863
|
input: UnlinkRepositoryFromProjectInput!
|
|
24859
|
-
): 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.")
|
|
24860
24865
|
|
|
24861
24866
|
"""
|
|
24862
24867
|
Unlock a lockable object
|
|
@@ -25299,7 +25304,7 @@ type Mutation {
|
|
|
25299
25304
|
Parameters for UpdateProject
|
|
25300
25305
|
"""
|
|
25301
25306
|
input: UpdateProjectInput!
|
|
25302
|
-
): 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.")
|
|
25303
25308
|
|
|
25304
25309
|
"""
|
|
25305
25310
|
Updates an existing project card.
|
|
@@ -25309,7 +25314,7 @@ type Mutation {
|
|
|
25309
25314
|
Parameters for UpdateProjectCard
|
|
25310
25315
|
"""
|
|
25311
25316
|
input: UpdateProjectCardInput!
|
|
25312
|
-
): 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.")
|
|
25313
25318
|
|
|
25314
25319
|
"""
|
|
25315
25320
|
Updates an existing project column.
|
|
@@ -25319,7 +25324,7 @@ type Mutation {
|
|
|
25319
25324
|
Parameters for UpdateProjectColumn
|
|
25320
25325
|
"""
|
|
25321
25326
|
input: UpdateProjectColumnInput!
|
|
25322
|
-
): 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.")
|
|
25323
25328
|
|
|
25324
25329
|
"""
|
|
25325
25330
|
Updates an existing project.
|
|
@@ -29830,7 +29835,7 @@ type Organization implements Actor & AnnouncementBannerI & MemberStatusable & No
|
|
|
29830
29835
|
The project number to find.
|
|
29831
29836
|
"""
|
|
29832
29837
|
number: Int!
|
|
29833
|
-
): 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.")
|
|
29834
29839
|
|
|
29835
29840
|
"""
|
|
29836
29841
|
Find a project by number.
|
|
@@ -29880,7 +29885,7 @@ type Organization implements Actor & AnnouncementBannerI & MemberStatusable & No
|
|
|
29880
29885
|
A list of states to filter the projects by.
|
|
29881
29886
|
"""
|
|
29882
29887
|
states: [ProjectState!]
|
|
29883
|
-
): 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.")
|
|
29884
29889
|
|
|
29885
29890
|
"""
|
|
29886
29891
|
The HTTP path listing organization's projects
|
|
@@ -33048,12 +33053,12 @@ type Project implements Closable & Node & Updatable {
|
|
|
33048
33053
|
"""
|
|
33049
33054
|
The project's description body.
|
|
33050
33055
|
"""
|
|
33051
|
-
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.")
|
|
33052
33057
|
|
|
33053
33058
|
"""
|
|
33054
33059
|
The projects description body rendered to HTML.
|
|
33055
33060
|
"""
|
|
33056
|
-
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.")
|
|
33057
33062
|
|
|
33058
33063
|
"""
|
|
33059
33064
|
Indicates if the object is closed (definition of closed may depend on type)
|
|
@@ -33088,42 +33093,42 @@ type Project implements Closable & Node & Updatable {
|
|
|
33088
33093
|
Returns the last _n_ elements from the list.
|
|
33089
33094
|
"""
|
|
33090
33095
|
last: Int
|
|
33091
|
-
): 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.")
|
|
33092
33097
|
|
|
33093
33098
|
"""
|
|
33094
33099
|
Identifies the date and time when the object was created.
|
|
33095
33100
|
"""
|
|
33096
|
-
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.")
|
|
33097
33102
|
|
|
33098
33103
|
"""
|
|
33099
33104
|
The actor who originally created the project.
|
|
33100
33105
|
"""
|
|
33101
|
-
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.")
|
|
33102
33107
|
|
|
33103
33108
|
"""
|
|
33104
33109
|
Identifies the primary key from the database.
|
|
33105
33110
|
"""
|
|
33106
|
-
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.")
|
|
33107
33112
|
|
|
33108
33113
|
"""
|
|
33109
33114
|
The Node ID of the Project object
|
|
33110
33115
|
"""
|
|
33111
|
-
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.")
|
|
33112
33117
|
|
|
33113
33118
|
"""
|
|
33114
33119
|
The project's name.
|
|
33115
33120
|
"""
|
|
33116
|
-
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.")
|
|
33117
33122
|
|
|
33118
33123
|
"""
|
|
33119
33124
|
The project's number.
|
|
33120
33125
|
"""
|
|
33121
|
-
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.")
|
|
33122
33127
|
|
|
33123
33128
|
"""
|
|
33124
33129
|
The project's owner. Currently limited to repositories, organizations, and users.
|
|
33125
33130
|
"""
|
|
33126
|
-
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.")
|
|
33127
33132
|
|
|
33128
33133
|
"""
|
|
33129
33134
|
List of pending cards in this project
|
|
@@ -33153,32 +33158,32 @@ type Project implements Closable & Node & Updatable {
|
|
|
33153
33158
|
Returns the last _n_ elements from the list.
|
|
33154
33159
|
"""
|
|
33155
33160
|
last: Int
|
|
33156
|
-
): 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.")
|
|
33157
33162
|
|
|
33158
33163
|
"""
|
|
33159
33164
|
Project progress details.
|
|
33160
33165
|
"""
|
|
33161
|
-
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.")
|
|
33162
33167
|
|
|
33163
33168
|
"""
|
|
33164
33169
|
The HTTP path for this project
|
|
33165
33170
|
"""
|
|
33166
|
-
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.")
|
|
33167
33172
|
|
|
33168
33173
|
"""
|
|
33169
33174
|
Whether the project is open or closed.
|
|
33170
33175
|
"""
|
|
33171
|
-
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.")
|
|
33172
33177
|
|
|
33173
33178
|
"""
|
|
33174
33179
|
Identifies the date and time when the object was last updated.
|
|
33175
33180
|
"""
|
|
33176
|
-
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.")
|
|
33177
33182
|
|
|
33178
33183
|
"""
|
|
33179
33184
|
The HTTP URL for this project
|
|
33180
33185
|
"""
|
|
33181
|
-
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.")
|
|
33182
33187
|
|
|
33183
33188
|
"""
|
|
33184
33189
|
Indicates if the object can be closed by the viewer.
|
|
@@ -33206,67 +33211,67 @@ type ProjectCard implements Node {
|
|
|
33206
33211
|
in a pending state and has yet to be associated with a column. Once cards are
|
|
33207
33212
|
associated with a column, they will not become pending in the future.
|
|
33208
33213
|
"""
|
|
33209
|
-
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.")
|
|
33210
33215
|
|
|
33211
33216
|
"""
|
|
33212
33217
|
The card content item
|
|
33213
33218
|
"""
|
|
33214
|
-
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.")
|
|
33215
33220
|
|
|
33216
33221
|
"""
|
|
33217
33222
|
Identifies the date and time when the object was created.
|
|
33218
33223
|
"""
|
|
33219
|
-
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.")
|
|
33220
33225
|
|
|
33221
33226
|
"""
|
|
33222
33227
|
The actor who created this card
|
|
33223
33228
|
"""
|
|
33224
|
-
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.")
|
|
33225
33230
|
|
|
33226
33231
|
"""
|
|
33227
33232
|
Identifies the primary key from the database.
|
|
33228
33233
|
"""
|
|
33229
|
-
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.")
|
|
33230
33235
|
|
|
33231
33236
|
"""
|
|
33232
33237
|
The Node ID of the ProjectCard object
|
|
33233
33238
|
"""
|
|
33234
|
-
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.")
|
|
33235
33240
|
|
|
33236
33241
|
"""
|
|
33237
33242
|
Whether the card is archived
|
|
33238
33243
|
"""
|
|
33239
|
-
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.")
|
|
33240
33245
|
|
|
33241
33246
|
"""
|
|
33242
33247
|
The card note
|
|
33243
33248
|
"""
|
|
33244
|
-
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.")
|
|
33245
33250
|
|
|
33246
33251
|
"""
|
|
33247
33252
|
The project that contains this card.
|
|
33248
33253
|
"""
|
|
33249
|
-
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.")
|
|
33250
33255
|
|
|
33251
33256
|
"""
|
|
33252
33257
|
The HTTP path for this card
|
|
33253
33258
|
"""
|
|
33254
|
-
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.")
|
|
33255
33260
|
|
|
33256
33261
|
"""
|
|
33257
33262
|
The state of ProjectCard
|
|
33258
33263
|
"""
|
|
33259
|
-
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.")
|
|
33260
33265
|
|
|
33261
33266
|
"""
|
|
33262
33267
|
Identifies the date and time when the object was last updated.
|
|
33263
33268
|
"""
|
|
33264
|
-
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.")
|
|
33265
33270
|
|
|
33266
33271
|
"""
|
|
33267
33272
|
The HTTP URL for this card
|
|
33268
33273
|
"""
|
|
33269
|
-
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.")
|
|
33270
33275
|
}
|
|
33271
33276
|
|
|
33272
33277
|
"""
|
|
@@ -33396,52 +33401,52 @@ type ProjectColumn implements Node {
|
|
|
33396
33401
|
Returns the last _n_ elements from the list.
|
|
33397
33402
|
"""
|
|
33398
33403
|
last: Int
|
|
33399
|
-
): 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.")
|
|
33400
33405
|
|
|
33401
33406
|
"""
|
|
33402
33407
|
Identifies the date and time when the object was created.
|
|
33403
33408
|
"""
|
|
33404
|
-
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.")
|
|
33405
33410
|
|
|
33406
33411
|
"""
|
|
33407
33412
|
Identifies the primary key from the database.
|
|
33408
33413
|
"""
|
|
33409
|
-
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.")
|
|
33410
33415
|
|
|
33411
33416
|
"""
|
|
33412
33417
|
The Node ID of the ProjectColumn object
|
|
33413
33418
|
"""
|
|
33414
|
-
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.")
|
|
33415
33420
|
|
|
33416
33421
|
"""
|
|
33417
33422
|
The project column's name.
|
|
33418
33423
|
"""
|
|
33419
|
-
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.")
|
|
33420
33425
|
|
|
33421
33426
|
"""
|
|
33422
33427
|
The project that contains this column.
|
|
33423
33428
|
"""
|
|
33424
|
-
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.")
|
|
33425
33430
|
|
|
33426
33431
|
"""
|
|
33427
33432
|
The semantic purpose of the column
|
|
33428
33433
|
"""
|
|
33429
|
-
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.")
|
|
33430
33435
|
|
|
33431
33436
|
"""
|
|
33432
33437
|
The HTTP path for this project column
|
|
33433
33438
|
"""
|
|
33434
|
-
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.")
|
|
33435
33440
|
|
|
33436
33441
|
"""
|
|
33437
33442
|
Identifies the date and time when the object was last updated.
|
|
33438
33443
|
"""
|
|
33439
|
-
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.")
|
|
33440
33445
|
|
|
33441
33446
|
"""
|
|
33442
33447
|
The HTTP URL for this project column
|
|
33443
33448
|
"""
|
|
33444
|
-
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.")
|
|
33445
33450
|
}
|
|
33446
33451
|
|
|
33447
33452
|
"""
|
|
@@ -33616,7 +33621,7 @@ interface ProjectOwner {
|
|
|
33616
33621
|
The project number to find.
|
|
33617
33622
|
"""
|
|
33618
33623
|
number: Int!
|
|
33619
|
-
): 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.")
|
|
33620
33625
|
|
|
33621
33626
|
"""
|
|
33622
33627
|
A list of projects under the owner.
|
|
@@ -33656,7 +33661,7 @@ interface ProjectOwner {
|
|
|
33656
33661
|
A list of states to filter the projects by.
|
|
33657
33662
|
"""
|
|
33658
33663
|
states: [ProjectState!]
|
|
33659
|
-
): 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.")
|
|
33660
33665
|
|
|
33661
33666
|
"""
|
|
33662
33667
|
The HTTP path listing owners projects
|
|
@@ -33681,37 +33686,37 @@ type ProjectProgress {
|
|
|
33681
33686
|
"""
|
|
33682
33687
|
The number of done cards.
|
|
33683
33688
|
"""
|
|
33684
|
-
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.")
|
|
33685
33690
|
|
|
33686
33691
|
"""
|
|
33687
33692
|
The percentage of done cards.
|
|
33688
33693
|
"""
|
|
33689
|
-
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.")
|
|
33690
33695
|
|
|
33691
33696
|
"""
|
|
33692
33697
|
Whether progress tracking is enabled and cards with purpose exist for this project
|
|
33693
33698
|
"""
|
|
33694
|
-
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.")
|
|
33695
33700
|
|
|
33696
33701
|
"""
|
|
33697
33702
|
The number of in-progress cards.
|
|
33698
33703
|
"""
|
|
33699
|
-
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.")
|
|
33700
33705
|
|
|
33701
33706
|
"""
|
|
33702
33707
|
The percentage of in-progress cards.
|
|
33703
33708
|
"""
|
|
33704
|
-
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.")
|
|
33705
33710
|
|
|
33706
33711
|
"""
|
|
33707
33712
|
The number of to do cards.
|
|
33708
33713
|
"""
|
|
33709
|
-
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.")
|
|
33710
33715
|
|
|
33711
33716
|
"""
|
|
33712
33717
|
The percentage of to do cards.
|
|
33713
33718
|
"""
|
|
33714
|
-
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.")
|
|
33715
33720
|
}
|
|
33716
33721
|
|
|
33717
33722
|
"""
|
|
@@ -34468,6 +34473,11 @@ enum ProjectV2FieldType {
|
|
|
34468
34473
|
"""
|
|
34469
34474
|
NUMBER
|
|
34470
34475
|
|
|
34476
|
+
"""
|
|
34477
|
+
Parent issue
|
|
34478
|
+
"""
|
|
34479
|
+
PARENT_ISSUE
|
|
34480
|
+
|
|
34471
34481
|
"""
|
|
34472
34482
|
Repository
|
|
34473
34483
|
"""
|
|
@@ -34483,6 +34493,11 @@ enum ProjectV2FieldType {
|
|
|
34483
34493
|
"""
|
|
34484
34494
|
SINGLE_SELECT
|
|
34485
34495
|
|
|
34496
|
+
"""
|
|
34497
|
+
Sub-issues progress
|
|
34498
|
+
"""
|
|
34499
|
+
SUB_ISSUES_PROGRESS
|
|
34500
|
+
|
|
34486
34501
|
"""
|
|
34487
34502
|
Text
|
|
34488
34503
|
"""
|
|
@@ -42155,7 +42170,7 @@ type RemovedFromProjectEvent implements Node {
|
|
|
42155
42170
|
"""
|
|
42156
42171
|
Identifies the primary key from the database.
|
|
42157
42172
|
"""
|
|
42158
|
-
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.")
|
|
42159
42174
|
|
|
42160
42175
|
"""
|
|
42161
42176
|
The Node ID of the RemovedFromProjectEvent object
|
|
@@ -42170,7 +42185,7 @@ type RemovedFromProjectEvent implements Node {
|
|
|
42170
42185
|
"""
|
|
42171
42186
|
Column name referenced by this project event.
|
|
42172
42187
|
"""
|
|
42173
|
-
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.")
|
|
42174
42189
|
}
|
|
42175
42190
|
|
|
42176
42191
|
"""
|
|
@@ -45883,7 +45898,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
45883
45898
|
The project number to find.
|
|
45884
45899
|
"""
|
|
45885
45900
|
number: Int!
|
|
45886
|
-
): 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.")
|
|
45887
45902
|
|
|
45888
45903
|
"""
|
|
45889
45904
|
Finds and returns the Project according to the provided Project number.
|
|
@@ -45933,7 +45948,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
45933
45948
|
A list of states to filter the projects by.
|
|
45934
45949
|
"""
|
|
45935
45950
|
states: [ProjectState!]
|
|
45936
|
-
): 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.")
|
|
45937
45952
|
|
|
45938
45953
|
"""
|
|
45939
45954
|
The HTTP path listing the repository's projects
|
|
@@ -62020,7 +62035,7 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
|
|
62020
62035
|
The project number to find.
|
|
62021
62036
|
"""
|
|
62022
62037
|
number: Int!
|
|
62023
|
-
): 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.")
|
|
62024
62039
|
|
|
62025
62040
|
"""
|
|
62026
62041
|
Find a project by number.
|
|
@@ -62070,7 +62085,7 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
|
|
62070
62085
|
A list of states to filter the projects by.
|
|
62071
62086
|
"""
|
|
62072
62087
|
states: [ProjectState!]
|
|
62073
|
-
): 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.")
|
|
62074
62089
|
|
|
62075
62090
|
"""
|
|
62076
62091
|
The HTTP path listing user's projects
|