Hello, I’m a dataview n00bie and I use this to create my initial MOC notes:
list from [[]] and !outgoing([[]]) SORT file.name
Normally this gives me a list of things that I haven’t explicitly linked out to from my MOC, so it’s a built in MOC, but as I add documentation by hand it’s a todo (or punchlist) of things left to reference.
The problem is if I then cut and paste the links it generates they’re of the form:
- [foobar](app://obsidian.md/diary/foobar.md)
which doesn’t work with the original dataview query.
My question is, can I get the dataview to generate the usual format for local links like this?
- [foobar](foobar.md)
I have tried to exclude this “app: links” using link([[]])
and outgoing(link(...
and outgoing(this.file.link)
and so on. But it seems it would be better if list from [[]]
gave me the non-app: style links.
Thanks!