OBJECT

JobHistory

link GraphQL Schema definition

  • type JobHistory implements Node {
  • id: ID!
  • # Job Name
  • jobName: String!
  • # The time the job started
  • startedAt: Time!
  • # The time the job ended
  • endedAt: Time
  • # Status of the job
  • status: JobHistoryStatus!
  • # The type of entity the job is processing
  • entityType: String
  • # The ID of the entity the job is processing
  • entityID: Int
  • # The error message if the job failed
  • error: String
  • }