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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

2737 );
2738
2739 const resolveConnectionValuesByRef = (
2740 ref: ConnectionRef,
2741 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
2742 foldResolutionFailure(
2743 Effect.gen(function* () {
2744 const row = yield* findConnectionRow(ref);
2745 if (!row) return {};
2746 return yield* resolveConnectionValues(row);
2747 }),
2748 );
2749
2750 // ------------------------------------------------------------------
2751 // Integrations

Callers 1

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected