up:: [[Meta PKM]]
tags:: #on/PKM
# My PKM Queries
The main contextual queries I prefer are "unrequited" & "unmentioned" notes on major maps of contents.
### Unrequited notes, by link
These notes point directly to this note. But this note doesn't point back.
```
table file.mtime.year + "-" + file.mtime.month + "-" + file.mtime.day as Modified
from [[]]
and !outgoing([[]])
sort file.mtime desc
```
### Unmentioned notes, with related tag
These notes have a relevant tag and are not mentioned in the MOC.
```
table file.mtime.year + "-" + file.mtime.month + "-" + file.mtime.day as Modified
from #on/thinking
and !outgoing([[]])
sort file.mtime desc
```