Enums types

circle-info

Enumeration types (Enums) are specialized scalars limited to a predefined set of values.Learn more about Enum typesarrow-up-right.

They serve two key purposes:

  1. Ensure arguments match allowed values

  2. Indicate through the type system that a field's value is restricted to a finite set

BoltRun.State

Values
Details

STARTING

RUNNING

SUCCESS

ERROR

FAILED

CANCELED

SKIPPED

Used by

  • something

Report.Status

Values

AVAILABLE

FAILED

IN_PROGRESS

Used by

  • something

UserAccount.Type

Values
Details

ADMIN

WORKSPACE_ADMIN

DEVELOPER

ANALYST

BUSINESS

WORKSPACE_SETTINGS_ADMIN

SECURITY_ADMIN

BILLING_ADMIN

SANDBOX_USER

Used by

  • something

Invite.Status

Values
Details

SENT

EXPIRED

Used by

  • something

Last updated

Was this helpful?