## All files linking here
```dataview
LIST file.folder
WHERE contains(file.outlinks, [[]])
```
## From a given folder
```dataview
LIST
WHERE contains(file.outlinks, [[]])
AND file.folder = "ForumStuff/f57/f57644/folderA"
```
The first one lists all files linking to the current note (with the folder that file is stored within), and the second lists only those from that given folder (which you of course need to change to a folder in your vault). Note that in this format you need to specify the full folder path.
Other variants could be achieved doing something like contains(file.folder, "f57") or startswith(file.folder, "ForumStuff") and so on.