trilium/src/entities/note.js

23 lines
667 B
JavaScript
Raw Normal View History

2018-01-29 12:16:50 +08:00
"use strict";
const Entity = require('./entity');
2018-01-29 12:16:50 +08:00
class Note extends Entity {
async getAttributes() {
return this.sql.getEntities("SELECT * FROM attributes WHERE noteId = ?", [this.noteId]);
2018-01-29 12:16:50 +08:00
}
async getAttribute(name) {
return this.sql.getEntity("SELECT * FROM attributes WHERE noteId = ? AND name = ?", [this.noteId, name]);
}
async getRevisions() {
return this.sql.getEntities("SELECT * FROM note_revisions WHERE noteId = ?", [this.noteId]);
}
async getTrees() {
return this.sql.getEntities("SELECT * FROM note_tree WHERE isDeleted = 0 AND noteId = ?", [this.noteId]);
2018-01-29 12:16:50 +08:00
}
}
module.exports = Note;