Show Notes NOT Linked to a Specific Note

What I’m trying to do

I started a new vault for a rather in-depth work project where I transposed someone else’s notes and created one central note to link to all of their notes. Based on this, I created several new higher order notes. I would like to easily find all of the notes I created. In other words, I’d like to find all of the notes that are not linked to the central note.

Check out the community plugin called: “Dangling Links Panel”

Not sure if this is the exact solution you might need, but it’s definitely worth seeing if it solves your problem

1 Like

If I understand correctly, you can use dataview plugin in this way:

  1. To find all notes which link to [[yourcentralnote]]:
```dataview
LIST
FROM [[yourcentralnote]]
  1. To find all notes NOT linked to [[yourcentralnote]]:
```dataview
LIST
FROM ![[yourcentralnote]]
1 Like

FANTASTIC!!! Thank you.