OBJECT

EngineResult

Represents single chunk of engine results for date range

link GraphQL Schema definition

1type EngineResult {
2
3tdoId: ID!
4
5engineId: ID!
6
7jsondata: JSONData
8
9startOffsetMs: Int
10
11stopOffsetMs: Int
12
13assetId: String
14
15userEdited: Boolean
16
17tdo: TemporalDataObject
18
19taskId: ID
20
21libraryId: ID
22
23library: Library
24
25# The engine that produced this result. Resolved regardless of the
26# engine's current state (e.g. deleted) so historical results remain
27# navigable.
28engine: Engine
29
30}