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

Function resolveConnectionValueByRef

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

Source from the content-addressed store, hash-verified

2896 );
2897
2898 const resolveConnectionValueByRef = (
2899 ref: ConnectionRef,
2900 ): Effect.Effect<string | null, StorageFailure> =>
2901 foldResolutionFailure(
2902 Effect.gen(function* () {
2903 const row = yield* findConnectionRow(ref);
2904 if (!row) return null;
2905 return yield* resolveConnectionValue(row);
2906 }),
2907 );
2908
2909 const resolveConnectionValuesByRef = (
2910 ref: ConnectionRef,

Callers 2

createExecutorFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValueFunction · 0.85

Tested by

no test coverage detected