Function: org-roam-db-get-scheduled-time

org-roam-db-get-scheduled-time is a byte-compiled function defined in org-roam-db.el.

Signature

(org-roam-db-get-scheduled-time)

Documentation

Return the scheduled time at point in ISO8601 format.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-db.el
(defun org-roam-db-get-scheduled-time ()
  "Return the scheduled time at point in ISO8601 format."
  (when-let* ((time (org-get-scheduled-time (point))))
    (format-time-string "%FT%T" time)))