Hello, I use org-roam-graph in place of org-roam-ui because its much more lean and utility oriented. The problem I am having is how to not show certain things in them, every https link I create inside a node is rendered and it clutters the graph, please share a code snippet if possible how to disable showing them. Would be also good to disable showing dailies and only non-dailies nodes?
It seems there is an undocumented variable called org-roam-graph-link-hidden-types
whose original value is “file” I modified the variable to “file” “https” as such
(setq org-roam-graph-link-hidden-types '(“file” “https”))
It works !!!
2 Likes