(runId: string, organizationId?: string | null)
| 197 | } |
| 198 | |
| 199 | private buildRunFilter(runId: string, organizationId?: string | null) { |
| 200 | const base = eq(workflowTracesTable.runId, runId); |
| 201 | if (!organizationId) { |
| 202 | return base; |
| 203 | } |
| 204 | return and(base, eq(workflowTracesTable.organizationId, organizationId)); |
| 205 | } |
| 206 | } |
no outgoing calls
no test coverage detected