OBJECT
Project
Projects manage issues, pull requests and notes within a project owner.
link GraphQL Schema definition
1 type Project implements Node { 2 3 # The project's description body. 4 String : 5 6 # The projects description body rendered to HTML. 7 HTML! : 8 9 # Identifities the date and time when the project was closed. 10 DateTime : 11 12 # List of columns in the project 13 # 14 # Arguments 15 # first: Returns the first _n_ elements from the list. 16 # after: Returns the elements in the list that come after the specified global ID. 17 # last: Returns the last _n_ elements from the list. 18 # before: Returns the elements in the list that come before the specified global 19 # ID. 20 Int, : String, : Int, : String): ProjectColumnConnection! ( : 21 22 # Identifies the date and time when the object was created. 23 DateTime! : 24 25 # The user that originally created the project. 26 User! : 27 28 # Identifies the primary key from the database. 29 Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." ) : 30 31 ID! : 32 33 # The project's name. 34 String! : 35 36 # The project's number. 37 Int! : 38 39 # The project's owner. Currently limited to repositories and organizations. 40 ProjectOwner! : 41 42 # The HTTP path for this project 43 URI! : 44 45 # Whether the project is open or closed. 46 ProjectState! : 47 48 # Identifies the date and time when the object was last updated. 49 DateTime! : 50 51 # The HTTP url for this project 52 URI! : 53 54 # Can the current viewer edit this project. 55 Boolean! : 56 57 }
link Required 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