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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

3099 );
3100
3101 const resolveConnectionValuesByRef = (
3102 ref: ConnectionRef,
3103 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
3104 foldResolutionFailure(
3105 Effect.gen(function* () {
3106 const row = yield* findConnectionRow(ref);
3107 if (!row) return {};
3108 return yield* resolveConnectionValues(row);
3109 }),
3110 );
3111
3112 // ------------------------------------------------------------------
3113 // Integrations

Callers 1

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected