data_exports
Fetch data export files for the authenticated account.
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
export_types | [DataExportType!]! | Yes | Export types to return. Full and Delta may be requested together. | |
timestamp_from | ISODateTime | No | Inclusive UTC start. Omit both timestamps for the latest exports. | |
timestamp_to | ISODateTime | No | Exclusive UTC end. Requires timestamp_from and defaults to the current time. | |
modules | [DataExportModuleName!] | No | Restrict the response to these export modules. | |
analyze | Boolean | No | If true, the query will only be analyzed (cost estimated) without executing it. |
Return Type
Query
query data_exports(
$export_types: [DataExportType!]!,
$timestamp_from: ISODateTime,
$timestamp_to: ISODateTime,
$modules: [DataExportModuleName!],
$analyze: Boolean
) {
data_exports(
export_types: $export_types,
timestamp_from: $timestamp_from,
timestamp_to: $timestamp_to,
modules: $modules,
analyze: $analyze
) {
request_id
complexity
data {
full {
run_id
modules {
name
tables {
name
files {
signed_url
size
created_at
}
}
}
}
delta {
run_id
modules {
name
tables {
name
files {
signed_url
size
created_at
}
}
}
}
}
}
}Variables
{
"export_types": ["[FULL, DELTA]"],
"timestamp_from": "2026-08-10T08:00:00Z",
"timestamp_to": "2026-08-10T12:00:00Z",
"modules": ["[ORDERS]"],
"analyze": true
}Response
{
"data": {
"data_exports": {
"request_id": "UmVjb3JkOjEyMzQ=",
"complexity": 100,
"data": DataExport
}
}
}