INPUT_OBJECT

CreateExportRequestForTDO

link GraphQL Schema definition

1input CreateExportRequestForTDO {
7
2# ID of the TDO to export from
3# Either this option _or_ mentionId must be provided.
4# This option must be provided if includeMedia is set to true on
5# CreateExportRequest
6tdoId: ID
11
8# ID of the mention to export from
9# Either this option _or_ tdoId must be provided.
10mentionId: ID
15
12# optional start offset in milliseconds for the export, relative to TDO
13# startDateTime
14startOffsetMs: Int
19
16# optional stop offset in milliseconds for the export, relative to the TDO
17# stopDateTime.
18stopOffsetMs: Int
22
20# optional start date for the exported results. Takes priority over startOffsetMs.
21startDate: DateTime
25
23# optional end date for the exported results. Takes priority over stopOffsetMs.
24stopDate: DateTime
26}