Function: org-roam-add-property
org-roam-add-property is a byte-compiled function defined in
org-roam-utils.el.
This function is obsolete since org-roam 2.1; use
org-roam-property-add instead.
Signature
(org-roam-add-property VAL PROP)
Documentation
Add VAL value to PROP property for the node at point.
Both, VAL and PROP are strings.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-utils.el
;;;; Properties
(defun org-roam-add-property (val prop)
"Add VAL value to PROP property for the node at point.
Both, VAL and PROP are strings."
(org-roam-property-add prop val))