share_js

const currentNote = await fetchNote();
const parentNote = await fetchNote(currentNote.parentNoteIds[0]);

for (const attr of currentNote.attributes) {
   console.log(attr.type, attr.name, attr.value);
}

//debugger;
console.log('-----------running----------------------');