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

Function getForOwnerImpl

packages/core/sdk/src/executor.ts:954–959  ·  view source on GitHub ↗
(owner: Owner, collection: string, key: string)

Source from the content-addressed store, hash-verified

952 );
953
954 const getForOwnerImpl = <T>(owner: Owner, collection: string, key: string) =>
955 input.core
956 .findFirst("plugin_storage", {
957 where: whereOwner(owner, collection, key),
958 })
959 .pipe(Effect.map((row) => (row ? pluginStorageEntryFromRow<T>(row) : null)));
960
961 const putImpl = <T>(owner: Owner, collection: string, key: string, data: unknown) =>
962 Effect.gen(function* () {

Callers 1

makePluginStorageFacadeFunction · 0.85

Calls 2

whereOwnerFunction · 0.85

Tested by

no test coverage detected