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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

2160 );
2161
2162 const resolveConnectionValueByRef = (
2163 ref: ConnectionRef,
2164 ): Effect.Effect<string | null, StorageFailure> =>
2165 foldResolutionFailure(
2166 Effect.gen(function* () {
2167 const row = yield* findConnectionRow(ref);
2168 if (!row) return null;
2169 return yield* resolveConnectionValue(row);
2170 }),
2171 );
2172
2173 const resolveConnectionValuesByRef = (
2174 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