How do I get a list of broken links in my vault using the base syntax?

This base:

```base
formulas:
  uncreated links: file.links.filter(!value.asFile().isTruthy())
views:
  - type: table
    name: Table
    filters:
      and:
        - formula["uncreated links"]
    order:
      - file.name
      - formula.uncreated links

```

The Filter and Properties formulas are the same:

file.links.filter(!value.asFile().isTruthy())
1 Like