MCPcopy Create free account
hub / github.com/StarpTech/FastGraph / find

Function find

src/stores/APQCache.ts:13–18  ·  view source on GitHub ↗
(uid: string)

Source from the content-addressed store, hash-verified

11export const key_item = (uid: string) => `apq-cache::${uid}`
12
13export function find(uid: string) {
14 const key = key_item(uid)
15 return DB.read<APQResult>(APQ_CACHE, key, {
16 type: 'json',
17 })
18}
19
20export function remove(pqKey: string) {
21 const key = key_item(pqKey)

Callers 1

apqFunction · 0.90

Calls 1

key_itemFunction · 0.85

Tested by

no test coverage detected