OBJECT

TDOBatch

batch type

link GraphQL Schema definition

1type TDOBatch {
2
3id: ID!
4
5# List of tdos incuded in the batch
6temporalDataObjects(offset: Int, limit: Int): TDOList
7
8# List of the tdo ids in the batch
9temporalDataObjectsIds(offset: Int, limit: Int): IDList
10
11# The selection option that created this set. ex. list of ids or search query
12selectionCriteria: JSONData
13
14# Runs a job defined by the input, for every tdo in the set. This also
15# materializes and finalizes
16# the tdo set if the selectionCriteria is dynamic (ex. search)
17executeJobTemplate(input: BatchJobTemplateInput!): TDOBatchJobProcess
18
19# Indicates if the list of tdos is finalized. In the case where the list of tdos
20# is dynamic
21# (ex. based on a search) this flag shows whether the search has been executed and
22# the list of tdos is created
23isMutable: Boolean!
24
25}