Homepage

BackgroundJob

Last edit: Apr 18, 2024

Background Job

type BackgroundJob {
  attempts: Int
  created_at: JSONDate!
  error: String
  failed_at: JSONDate
  form_configuration_name: String
  form_name: String
  id: ID!
  label: String
  locked_at: JSONDate
  queue: String!
  resource_id: ID
  resource_type: String
  run_at: JSONDate!
  source_name: String
  source_type: String
  updated_at: JSONDate!
}

Fields

attempts (Int)

how many times the job was tried to be processed. By default the job is not retried on error.

created_at (JSONDate)

error (String)

error which made the job fail

failed_at (JSONDate)

not null when exception encounered during processing the job

form_configuration_name (String)

populated if the background job was invoked by form configuration

form_name (String)

populated if the background job was invoked by form configuration

id (ID)

label (String)

job label

locked_at (JSONDate)

queue (String)

which queue is used to process the job

resource_id (ID)

populated if the background job was invoked by form configuration

resource_type (String)

populated if the background job was invoked by form configuration

run_at (JSONDate)

source_name (String)

populated if the background job was invoked by form configuration

source_type (String)

populated if the background job was invoked by form configuration

updated_at (JSONDate)

Questions?

We are always happy to help with any questions you may have.

contact us