Don't know what maps of content are? Check my note [[Maps of Content (MOC)]]
## Suggested
To see my most developed topics of notes, check out [[My Maps of Content (By Amount of Links)]]
See [[My Resources]] to see my curated list of the core pillars in my personal brand/curiosities.
## Sorted via queries
### By Last Modified
```dataview
list
from #moc️ and !outgoing([[]]) and !"Hidden"
sort file.mtime desc
limit 10
```
### By Alphabetical
```dataview
list
from #moc️ and !outgoing([[]]) and !"Hidden"
sort file.name asc
limit 10
```
### By Size
(This can be misleading since it only accounts for the text inside the note, so if I were to transfer a lot of the content out into separate notes it would not be considered large in size).
```dataview
list
from #moc️ and !outgoing([[]]) and !"Hidden"
sort file.size desc
limit 10
```
### By Total Links
```dataview
TABLE length(file.outlinks) + length(file.inlinks) as "Total Links", length(file.outlinks) as "Outgoing", length(file.inlinks) as "Backlinks"
FROM #moc️ and !outgoing([[]]) and !"Hidden"
SORT length(file.outlinks) + length(file.inlinks) desc
limit 10
```