What I’m trying to do
Put simply, I’m trying to display all the notes that link to a base, from within that same base.
As an example, I have a base called Windows.base, and within it, I would want to display only the notes that link to Windows.base ([[Windows.base]]). Is this possible?
I know the filter file.hasLink("Windows.base") is possible, but I would like to replace "Windows.base" with this, but that doesn’t work, only if I embed the base in another note (![[Windows.base]]) and link to that note instead.
Things I have tried
filters:
and:
- file.hasLink(this.file.name)
views:
- type: table
name: Table
views:
- type: table
name: Table
filters:
and:
- file.hasLink(this.file.name)
order:
- file.name
- file.folder
- file.ctime
- file.mtime
The latter is from a comment on Reddit where I asked the same question.
