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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

2907 );
2908
2909 const resolveConnectionValuesByRef = (
2910 ref: ConnectionRef,
2911 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
2912 foldResolutionFailure(
2913 Effect.gen(function* () {
2914 const row = yield* findConnectionRow(ref);
2915 if (!row) return {};
2916 return yield* resolveConnectionValues(row);
2917 }),
2918 );
2919
2920 // ------------------------------------------------------------------
2921 // Integrations

Callers 1

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected