proper sql filtering

This commit is contained in:
2026-03-01 20:43:48 -06:00
parent 6b9d7d6cf2
commit bbe94d75f8
54 changed files with 6692 additions and 928 deletions

View File

@@ -1104,6 +1104,11 @@ pub mod execution {
pub status: ExecutionStatus,
pub result: Option<JsonDict>,
/// When the execution actually started running (worker picked it up).
/// Set when status transitions to `Running`. Used to compute accurate
/// duration that excludes queue/scheduling wait time.
pub started_at: Option<DateTime<Utc>>,
/// Workflow task metadata (only populated for workflow task executions)
///
/// Provides direct access to workflow orchestration state without JOINs.