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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

3039 );
3040
3041 const resolveConnectionValueByRef = (
3042 ref: ConnectionRef,
3043 ): Effect.Effect<string | null, StorageFailure> =>
3044 foldResolutionFailure(
3045 Effect.gen(function* () {
3046 const row = yield* findConnectionRow(ref);
3047 if (!row) return null;
3048 return yield* resolveConnectionValue(row);
3049 }),
3050 );
3051
3052 const resolveConnectionValuesByRef = (
3053 ref: ConnectionRef,

Callers 2

createExecutorFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValueFunction · 0.85

Tested by

no test coverage detected