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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

2528 );
2529
2530 const resolveConnectionValueByRef = (
2531 ref: ConnectionRef,
2532 ): Effect.Effect<string | null, StorageFailure> =>
2533 foldResolutionFailure(
2534 Effect.gen(function* () {
2535 const row = yield* findConnectionRow(ref);
2536 if (!row) return null;
2537 return yield* resolveConnectionValue(row);
2538 }),
2539 );
2540
2541 const resolveConnectionValuesByRef = (
2542 ref: ConnectionRef,

Callers 2

createExecutorFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValueFunction · 0.85

Tested by

no test coverage detected