````
```dataview
list from [[]] and !outgoing([[]])
sort file.name asc
```
````
**List Orphans:**
````
```dataview
LIST
WHERE length(file.outlinks) = 0
AND length(file.inlinks) = 0
SORT ASC
```file.name
````
**To be processed**
````
```dataview
list from "_Inbox"
WHERE != "Quick Note"
sort asc
```file.namefile.name
````
**Incomplete links**
````
```dataview
TABLE without id
out AS "Incomplete Links", as "Origin"
FLATTEN file.outlinks as out
WHERE !(out.file) AND !contains(meta(out).path, "/")
SORT out ASC
```file.link
````
**Recent notes**
````
```dataview
TABLE WITHOUT ID
AS "Title"
FROM ""
SORT file.ctime DESC
LIMIT 10
```file.link
````