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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

1834 );
1835
1836 const resolveConnectionValuesByRef = (
1837 ref: ConnectionRef,
1838 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
1839 foldResolutionFailure(
1840 Effect.gen(function* () {
1841 const row = yield* findConnectionRow(ref);
1842 if (!row) return {};
1843 return yield* resolveConnectionValues(row);
1844 }),
1845 );
1846
1847 // ------------------------------------------------------------------
1848 // Integrations

Callers 1

produceConnectionToolsFunction · 0.85

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected