OBJECT

Project

Represents a project.

link GraphQL Schema definition

1type Project {
2
3# Id.
4id: ID
5
6# Name.
7name: String
8
9# Status.
10status: ProjectStatus
11
12}