Can a Base show all the files that link to *it* (the Base)?

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.

Hi.

For me, file.hasLink(this.file.name) didn’t work in 1.10.1. It does work in 1.10.2

2 Likes

Thanks, from a commenter on Reddit I did gather they’re implementing it. I’ll have to wait this one out. Thank you!

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.