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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

1748 );
1749
1750 const resolveConnectionValueByRef = (
1751 ref: ConnectionRef,
1752 ): Effect.Effect<string | null, StorageFailure> =>
1753 foldResolutionFailure(
1754 Effect.gen(function* () {
1755 const row = yield* findConnectionRow(ref);
1756 if (!row) return null;
1757 return yield* resolveConnectionValue(row);
1758 }),
1759 );
1760
1761 const resolveConnectionValuesByRef = (
1762 ref: ConnectionRef,

Callers 2

produceConnectionToolsFunction · 0.85
createExecutorFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValueFunction · 0.85

Tested by

no test coverage detected