ENUM

BuildStatus

Valid strings for the Build.status field.

link GraphQL Schema definition

1enum BuildStatus {
2
3# The build has been approved and is ready for deployment
4approved
5
6# The build is available for deployment
7available
8
9# The build has been soft-deleted.
10deleted
11
12# The build is being deployed.
13deploying
14
15# The build has been deployed. There can be only one deployed build.
16deployed
17
18# The build files are being fetched from their source.
19fetching
20
21# The build failed validation checks. See build report for details.
22invalid
23
24# The build is deployed but has been paused. Engine processing will not
25# proceed until the build is un-paused.
26paused
27
28# The build has been created but is still pending approval and other
29# workflow steps.
30pending
31
32# The build has been successfully uploaded to the build repository.
33uploaded
34
35# Deployment has failed
36deployFailed
37
38# Approval was requested, but denied
39disapproved
40}