data_exports

Fetch data export files for the authenticated account.

Arguments

ArgumentTypeRequiredDefaultDescription
export_types[DataExportType!]!Yes

Export types to return. Full and Delta may be requested together.

timestamp_fromISODateTimeNo

Inclusive UTC start. Omit both timestamps for the latest exports.

timestamp_toISODateTimeNo

Exclusive UTC end. Requires timestamp_from and defaults to the current time.

modules[DataExportModuleName!]No

Restrict the response to these export modules.

analyzeBooleanNo

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

Return Type

DataExportsQueryResult

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 {
      ...DataExportFragment
    }
  }
}

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
    }
  }
}