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

Function whereFor

packages/core/sdk/src/executor.ts:920–926  ·  view source on GitHub ↗
(collection: string, key?: string)

Source from the content-addressed store, hash-verified

918
919 const whereFor =
920 (collection: string, key?: string): CoreWhere =>
921 (b: AnyCb) =>
922 b.and(
923 b("plugin_id", "=", input.pluginId),
924 b("collection", "=", collection),
925 key === undefined ? true : b("key", "=", key),
926 );
927
928 const whereOwner = (owner: Owner, collection: string, key: string): CoreWhere => {
929 const os = ownerSubject(owner);

Callers 3

getVisibleFunction · 0.85
queryCollectionFunction · 0.85
makePluginStorageFacadeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected