MCPcopy Create free account
hub / github.com/ZenNotes/zennotes / loadNotes

Function loadNotes

integrations/raycast/src/search-notes.tsx:298–306  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

296}
297
298async function loadNotes(): Promise<ZenNote[]> {
299 const { stdout } = await execZen([
300 "list",
301 "--json",
302 "--limit",
303 String(NOTE_LIMIT),
304 ]);
305 return parseNoteList(String(stdout));
306}
307
308async function updateNoteArchiveState(
309 note: ZenNote,

Callers 1

SearchNotesFunction · 0.85

Calls 2

execZenFunction · 0.90
parseNoteListFunction · 0.90

Tested by

no test coverage detected