Looking for files without a specific backlink

I’m trying to figure out how to get a list of files not having inlinks from another specific file.

Things I have tried

dataview
table status as "Status"
From [[]]
where type = "gtd" and !any(file.inlinks)=[[GTD Kanban]]
sort status asc

Try this:

```dataview
TABLE status as "Status"
FROM ""
WHERE type = "gtd" AND !contains(file.inlinks, [[GTD Kanban]])
SORT status ASC
```
1 Like

I think this is the 2nd time you’ve bailed me out on a problem. This is exactly what I needed! Thanks!

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