MCPcopy Create free account
hub / github.com/DeepNotesApp/DeepNotes / mhget

Method mhget

packages/@stdlib/data/src/data-abstraction.ts:238–244  ·  view source on GitHub ↗
(items: [DataPrefix, string, string][], params?: HMGetParams)

Source from the content-addressed store, hash-verified

236 return coalesce(...results);
237 }
238 mhget(items: [DataPrefix, string, string][], params?: HMGetParams) {
239 return allSettledResults(
240 items.map(([prefix, suffix, key]) =>
241 this.hget(prefix, suffix, key as any, params),
242 ),
243 );
244 }
245 async hget<
246 DataPrefix_ extends DataPrefix,
247 DataField_ extends Extract<

Callers 1

mhgetCoalesceMethod · 0.95

Calls 2

hgetMethod · 0.95
allSettledResultsFunction · 0.90

Tested by

no test coverage detected