MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / resolveConnectionValueByRef

Function resolveConnectionValueByRef

packages/core/sdk/src/executor.ts:2728–2737  ·  view source on GitHub ↗
(
      ref: ConnectionRef,
    )

Source from the content-addressed store, hash-verified

2726 );
2727
2728 const resolveConnectionValueByRef = (
2729 ref: ConnectionRef,
2730 ): Effect.Effect<string | null, StorageFailure> =>
2731 foldResolutionFailure(
2732 Effect.gen(function* () {
2733 const row = yield* findConnectionRow(ref);
2734 if (!row) return null;
2735 return yield* resolveConnectionValue(row);
2736 }),
2737 );
2738
2739 const resolveConnectionValuesByRef = (
2740 ref: ConnectionRef,

Callers 2

createExecutorFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValueFunction · 0.85

Tested by

no test coverage detected