I have X amount of notes that reference ‘Note A’ but ‘Note A’ does not mention them in the page itself. I would like to create a dataview that shows me a list of all the notes that are not linked on the page.
Things I have tried
I tried to play around with dataview inlinks but was unable to get it to give me something I could understand or give the right result.
LIST
WHERE length(file.outlinks) > 0 AND contains(file.outlinks.file, this.file) AND !contains(file.inlinks.file, this.file)
It creates a list.
Pics all file hat have any out link.
It filters all files that link to the file that the dataview is in.
And it filters all file that do not have a inlink to the current file.