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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

2539 );
2540
2541 const resolveConnectionValuesByRef = (
2542 ref: ConnectionRef,
2543 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
2544 foldResolutionFailure(
2545 Effect.gen(function* () {
2546 const row = yield* findConnectionRow(ref);
2547 if (!row) return {};
2548 return yield* resolveConnectionValues(row);
2549 }),
2550 );
2551
2552 // ------------------------------------------------------------------
2553 // Integrations

Callers 1

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected