OBJECT
TDOBatch
batch type
link GraphQL Schema definition
1 type TDOBatch { 2 3 ID! : 4 5 # List of tdos incuded in the batch 6 Int, : Int): TDOList ( : 7 8 # List of the tdo ids in the batch 9 Int, : Int): IDList ( : 10 11 # The selection option that created this set. ex. list of ids or search query 12 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) 17 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 23 Boolean! : 24 25 }