OBJECT
Project
Projects manage issues, pull requests and notes within a project owner.
link GraphQL Schema definition
- type Project implements Node {
- # The project's description body.
- : String
- # The projects description body rendered to HTML.
- : HTML!
- # Identifities the date and time when the project was closed.
- : DateTime
- # List of columns in the project
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- (: Int, : String, : Int, : String): ProjectColumnConnection!
- # Identifies the date and time when the object was created.
- : DateTime!
- # The user that originally created the project.
- : User!
- # Identifies the primary key from the database.
- : Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." )
- : ID!
- # The project's name.
- : String!
- # The project's number.
- : Int!
- # The project's owner. Currently limited to repositories and organizations.
- : ProjectOwner!
- # The HTTP path for this project
- : URI!
- # Whether the project is open or closed.
- : ProjectState!
- # Identifies the date and time when the object was last updated.
- : DateTime!
- # The HTTP url for this project
- : URI!
- # Can the current viewer edit this project.
- : Boolean!
- }
link Require by
- AddProjectCardPayloadAutogenerated return type of AddProjectCard
- AddProjectColumnPayloadAutogenerated return type of AddProjectColumn
- CreateProjectPayloadAutogenerated return type of CreateProject
- DeleteProjectColumnPayloadAutogenerated return type of DeleteProjectColumn
- OrganizationAn account on GitHub, with one or more owners, that has repositories, members and teams.
- ProjectColumnA column inside a project.
- ProjectConnectionThe connection type for Project.
- ProjectEdgeAn edge in a connection.
- ProjectOwnerRepresents an owner of a Project.
- RepositoryA repository contains the content for a project.
- UpdateProjectPayloadAutogenerated return type of UpdateProject