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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

1710 );
1711
1712 const resolveConnectionValueByRef = (
1713 ref: ConnectionRef,
1714 ): Effect.Effect<string | null, StorageFailure> =>
1715 foldResolutionFailure(
1716 Effect.gen(function* () {
1717 const row = yield* findConnectionRow(ref);
1718 if (!row) return null;
1719 return yield* resolveConnectionValue(row);
1720 }),
1721 );
1722
1723 const resolveConnectionValuesByRef = (
1724 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