Hello @cjt3,
To achieve this in Dataview, you can’t directly use this.file
when specifying an external note—you’ll need to reference the note name explicitly. Try:
TABLE file.inlinks AS "Links"
WHERE contains(file.inlinks, [[YourNoteName]])
Replace YourNoteName
with the exact note title. This will list all notes that link to that note. For the reverse (notes it links to), use file.outlinks
. This approach works outside the current file context and gives you full control over the target note. Let me know if you’d like to combine both directions in one table! .
Best Regards,
James Henry