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

Function resolveConnectionValuesByRef

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

Source from the content-addressed store, hash-verified

3050 );
3051
3052 const resolveConnectionValuesByRef = (
3053 ref: ConnectionRef,
3054 ): Effect.Effect<Record<string, string | null>, StorageFailure> =>
3055 foldResolutionFailure(
3056 Effect.gen(function* () {
3057 const row = yield* findConnectionRow(ref);
3058 if (!row) return {};
3059 return yield* resolveConnectionValues(row);
3060 }),
3061 );
3062
3063 // ------------------------------------------------------------------
3064 // Integrations

Callers 1

Calls 3

foldResolutionFailureFunction · 0.85
findConnectionRowFunction · 0.85
resolveConnectionValuesFunction · 0.85

Tested by

no test coverage detected