interface ExecutionExportOptions {
    allow_direct_query?: boolean;
    enrich_inputs?: boolean;
    exclude_system?: boolean;
    max_depth?: number;
    mode?: ExportMode;
    omit_results?: boolean;
}

Properties

allow_direct_query?: boolean

When true, allows fallback to direct database queries for expired jobs whose in-memory handles have been pruned. Only supported with providers that implement the extended exporter query interface (e.g., Postgres).

false
enrich_inputs?: boolean

When true, enriches activity and child workflow events with their inputs by querying the underlying job attributes. This enables full visibility into activity arguments without requiring separate callback queries.

false (late-binding: only return timeline_key references)
exclude_system?: boolean
max_depth?: number
mode?: ExportMode
omit_results?: boolean