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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

1823 );
1824
1825 const resolveConnectionValueByRef = (
1826 ref: ConnectionRef,
1827 ): Effect.Effect<string | null, StorageFailure> =>
1828 foldResolutionFailure(
1829 Effect.gen(function* () {
1830 const row = yield* findConnectionRow(ref);
1831 if (!row) return null;
1832 return yield* resolveConnectionValue(row);
1833 }),
1834 );
1835
1836 const resolveConnectionValuesByRef = (
1837 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