MCPcopy Index your code
hub / github.com/simstudioai/sim / getExecutionMeta

Function getExecutionMeta

apps/sim/lib/execution/event-buffer.ts:646–653  ·  view source on GitHub ↗
(executionId: string)

Source from the content-addressed store, hash-verified

644}
645
646export async function getExecutionMeta(executionId: string): Promise<ExecutionStreamMeta | null> {
647 const result = await readExecutionMetaState(executionId)
648 if (result.status === 'found') return result.meta
649 if (result.status === 'unavailable') {
650 return null
651 }
652 return null
653}
654
655export async function readExecutionEvents(
656 executionId: string,

Callers

nothing calls this directly

Calls 1

readExecutionMetaStateFunction · 0.85

Tested by

no test coverage detected