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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

1759 );
1760
1761 const resolveConnectionValuesByRef = (
1762 ref: ConnectionRef,
1763 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
1764 foldResolutionFailure(
1765 Effect.gen(function* () {
1766 const row = yield* findConnectionRow(ref);
1767 if (!row) return {};
1768 return yield* resolveConnectionValues(row);
1769 }),
1770 );
1771
1772 // ------------------------------------------------------------------
1773 // Integrations

Callers 1

produceConnectionToolsFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected