Skip to content

Instantly share code, notes, and snippets.

@YuraKolesnikov
Created August 14, 2023 12:11
Show Gist options
  • Save YuraKolesnikov/28f32b49f7e0352a657380eafa4c71ea to your computer and use it in GitHub Desktop.
Save YuraKolesnikov/28f32b49f7e0352a657380eafa4c71ea to your computer and use it in GitHub Desktop.
const payload = {
spaces: [
{
id: '123',
name: 'My Space',
notes: [{ id: 'note_1', name: 'Note 1' }],
folders: [{ id: 'folder_1', name: 'Folder 1', notes: [{ id: 'note_2', name: 'Note 2' }] }]
projects: [
{
id: 'project_1',
name: 'Project 1',
notes: [{ id: 'note_3', name: 'Note 3' }],
folders: [{ id: 'folder_2', name: 'Folder 2', notes: [{ id: 'note_4', name: 'Note 4' }] }],
boards: [
{ id: 'board_1', name: 'Board 1' }
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment