recurring_data_export

Fetch recurring data export records matching the supplied arguments.

Arguments

ArgumentTypeRequiredDefaultDescription
dateStringNo

Date in YYYY-MM-DD format.

run_hour_utcIntNo

UTC hour used to select the closest LakeHero export run.

analyzeBooleanNo

If true, the query will only be analyzed (cost estimated) without executing it.

Return Type

LakeheroDataExportQueryResult

Query

query recurring_data_export(
  $date: String,
  $run_hour_utc: Int,
  $analyze: Boolean
) {
  recurring_data_export(
    date: $date,
    run_hour_utc: $run_hour_utc,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...LakeheroDataExportFragment
    }
  }
}

Variables

{
  "date": "2026-07-15",
  "run_hour_utc": 100,
  "analyze": true
}

Response

{
  "data": {
    "recurring_data_export": {
      "request_id": "UmVjb3JkOjEyMzQ=",
      "complexity": 100,
      "data": {id: "TGFrZWhlcm9EYXRhRXhwb3J0OjEyMzQ="}
    }
  }
}