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

Function writeNote

apps/web/src/bridge/http-bridge.ts:401–406  ·  view source on GitHub ↗
(relPath: string, body: string)

Source from the content-addressed store, hash-verified

399}
400
401function writeNote(relPath: string, body: string): Promise<NoteMeta> {
402 return jsonRequest<NoteMeta>('/notes/write', {
403 method: 'POST',
404 body: { path: relPath, body }
405 })
406}
407
408async function appendToNote(
409 relPath: string,

Callers 7

appendToNoteFunction · 0.70
dbPersistSidecarFunction · 0.70
openDatabaseFunction · 0.70
writeDatabaseRowsFunction · 0.70
writeDatabaseSchemaFunction · 0.70
createDatabaseFunction · 0.70
createRecordPageFunction · 0.70

Calls 1

jsonRequestFunction · 0.85

Tested by

no test coverage detected