ENUM

ApplicationStatus

Set of possible states for a custom application. The application state determines whether or not it is available in production and the actions that can be taken on it.

link GraphQL Schema definition

1enum ApplicationStatus {
2
3# The application is active (production state)
4active
5
6# The application is in draft state during test and development
7draft
8
9# The application has been deleted and is no longer available for any purpose
10deleted
11
12# The application is awaiting approval.
13pending
14
15# The application has been rejected and must be modified and re-submitted.
16rejected
17
18# The application has been approved and can now be deployed.
19approved
20
21# The application has been disabled, but not deleted.
22disabled
23}