ENUM

JobState

The states that a job may be in.

link GraphQL Schema definition

  • enum JobState {
  • # Job has been created but work on it has not started.
  • created
  • # Work has begun on the job.
  • inprogress
  • # The job has completed successfully.
  • completed
  • # The job failed to complete.
  • failed
  • }