Function: org-roam-db-query
org-roam-db-query is a byte-compiled function defined in
org-roam-db.el.
Signature
(org-roam-db-query SQL &rest ARGS)
Documentation
Run SQL query on Org-roam database with ARGS.
SQL can be either the emacsql vector representation, or a string.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-db.el
(defun org-roam-db-query (sql &rest args)
"Run SQL query on Org-roam database with ARGS.
SQL can be either the emacsql vector representation, or a string."
(apply #'emacsql (org-roam-db) sql args))