summaryrefslogtreecommitdiff
path: root/gnosis.el
diff options
context:
space:
mode:
Diffstat (limited to 'gnosis.el')
-rw-r--r--gnosis.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnosis.el b/gnosis.el
index cb5efa4..3c0956f 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -87,6 +87,10 @@ Example:
"Get VALUE from TABLE, optionally with where RESTRICTIONS."
(caar (gnosis--select value table restrictions)))
+(defun gnosis-get-note-tags (id)
+ "Return tags for note ID."
+ (gnosis-get 'tags 'notes `(= id ,id)))
+
(defun gnosis--delete (table value)
"From TABLE use where to delete VALUE."
(emacsql gnosis-db `[:delete :from ,table :where ,value]))