OBJECT
JobHistory
link GraphQL Schema definition
- type JobHistory implements Node {
- : ID!
- # Job Name
- : String!
- # The time the job started
- : Time!
- # The time the job ended
- : Time
- # Status of the job
- : JobHistoryStatus!
- # The type of entity the job is processing
- : String
- # The ID of the entity the job is processing
- : Int
- # The error message if the job failed
- : String
- }