ENUM

ApplicationViewerBuildStatus

link GraphQL Schema definition

1enum ApplicationViewerBuildStatus {
2
3# The build has been approved and is ready for deployment
4approved
5
6# The build has been soft-deleted.
7deleted
8
9# The build has been deployed. There can be only one deployed build.
10deployed
11
12# The build is draft.
13draft
14}