Function: org-roam-db-explore

org-roam-db-explore is an interactive and byte-compiled function defined in org-roam-db.el.

Signature

(org-roam-db-explore)

Documentation

Explore the org-roam DB contents.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-db.el
(defun org-roam-db-explore ()
  "Explore the org-roam DB contents."
  (interactive)
  (require 'sqlite-mode nil t)
  (if (fboundp 'sqlite-mode-open-file)
      (sqlite-mode-open-file org-roam-db-location)
    (message "org-roam-db-explore: This command requires Emacs 29")))