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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

1743 );
1744
1745 const resolveConnectionValuesByRef = (
1746 ref: ConnectionRef,
1747 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
1748 foldResolutionFailure(
1749 Effect.gen(function* () {
1750 const row = yield* findConnectionRow(ref);
1751 if (!row) return {};
1752 return yield* resolveConnectionValues(row);
1753 }),
1754 );
1755
1756 // ------------------------------------------------------------------
1757 // Integrations

Callers 1

produceConnectionToolsFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected