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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

1732 );
1733
1734 const resolveConnectionValueByRef = (
1735 ref: ConnectionRef,
1736 ): Effect.Effect<string | null, StorageFailure> =>
1737 foldResolutionFailure(
1738 Effect.gen(function* () {
1739 const row = yield* findConnectionRow(ref);
1740 if (!row) return null;
1741 return yield* resolveConnectionValue(row);
1742 }),
1743 );
1744
1745 const resolveConnectionValuesByRef = (
1746 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