recurring_data_export
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
date | String | No | Date in YYYY-MM-DD format | |
analyze | Boolean | No | If true, the query will only be analyzed (cost estimated) without executing it. |
Return Type
Query
query recurring_data_export(
$date: String,
$analyze: Boolean
) {
recurring_data_export(
date: $date,
analyze: $analyze
) {
request_id
complexity
data {
files {
table_name
signed_url
created_at
size
}
expires_at
}
}
}Variables
{
"date": "abc123",
"analyze": true
}Response
{
"data": {
"recurring_data_export": {
"request_id": "abc123",
"complexity": 987,
"data": LakeheroDataExport
}
}
}