OBJECT

TDOBatchJobProcess

link GraphQL Schema definition

1type TDOBatchJobProcess implements BatchProcess {
2
3id: ID!
4
5# Overall status of the batch execution
6status: BatchProcessStatus!
7
8# The set of TDOs that are being processed
9TDOBatch: TDOBatch!
10
11# Details of the input that created the batchJobProcess
12details: JSONData
13
14concurrency: Int
15
16itemsCompleted: Int
17
18itemsFailed: Int
19
20itemsTotal: Int
21
22itemsRunning: Int
23
24itemsPending: Int
25
26}