Overview of all links and all potential links inside a note

What I wanted to achieve

A section inside all my notes - at least inside new created notes- that presents me:

  1. all notes that backlink to the current open note
  2. all notes that embed the current open note
  3. all notes whose note name contains the current open note name; useful if you make use of atomic notes method.

Goal achieved

This is a screenshot from my note that is named “base”

The base is programmed with following parameters

```base
filters:
  or:
    - and:
        - file.embeds.filter(value.contains(this.file.name))
    - and:
        - file.hasLink(this.file)
    - and:
        - file.name.contains(this.file.name)
        - file.name != this.file.name
views:
  - type: table
    name: Table
    order:
      - file.name
      - tags
      - übergeordnet
      - erstellt
    sort:
      - property: file.name
        direction: ASC
    columnSize:
      file.name: 368
      note.tags: 474
      note.übergeordnet: 199

```