OBJECT

Project

Projects manage issues, pull requests and notes within a project owner.

link GraphQL Schema definition

1type Project implements Node {
2
3# The project's description body.
4body: String
5
6# The projects description body rendered to HTML.
7bodyHTML: HTML!
8
9# Identifities the date and time when the project was closed.
10closedAt: 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.
20columns(first: Int, after: String, last: Int, before: String): ProjectColumnConnection!
21
22# Identifies the date and time when the object was created.
23createdAt: DateTime!
24
25# The user that originally created the project.
26creator: User!
27
28# Identifies the primary key from the database.
29databaseId: Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." )
30
31id: ID!
32
33# The project's name.
34name: String!
35
36# The project's number.
37number: Int!
38
39# The project's owner. Currently limited to repositories and organizations.
40owner: ProjectOwner!
41
42# The HTTP path for this project
43path: URI!
44
45# Whether the project is open or closed.
46state: ProjectState!
47
48# Identifies the date and time when the object was last updated.
49updatedAt: DateTime!
50
51# The HTTP url for this project
52url: URI!
53
54# Can the current viewer edit this project.
55viewerCanEdit: Boolean!
56
57}