ENUM

ProjectState

State of the project; either 'open' or 'closed'

link GraphQL Schema definition

1enum ProjectState {
2
3# The project is open.
4OPEN
5
6# The project is closed.
7CLOSED
8}