I need a dataview query that returns a table of links to flies containing a tag #focus and also links to the folders where the file is. So far, I have this query, that provides a link to the file but only the folder name. How do I convert the folder name to a link to that folder?
file.folder.link doesn’t seem to exist…
Thanks
```dataview
TABLE WITHOUT ID
file.folder as "Folder",
file.link as "Focus page"
WHERE contains(tags, "focus")
SORT file.cday asc
```