summary::A very powerful Obsidian plug-in.
Dataview makes Obsidian way more useful.
Dataview Uses
Note Count
This uses the JavaScript inline syntax.
Currently there's
$=dv.pages().lengthnotes
Finding Orphaned Pages
list
from "" where length(file.inlinks) =0 and length(file.outlinks) = 0 Based On A Property
TABLE created
WHERE created.year = 2024
SORT created DESCFinding Pages Edited Recently
TABLE dateformat(file.mtime, "yyyy-MM-dd HH:mm") AS "Last modified"
FROM ""
SORT file.mtime DESC
LIMIT 5Finding & Displaying Notes with Certain Fields
TABLE summary
WHERE summary Test
TABLE
length(rows.file.name) as notes
WHERE
file.tags
FLATTEN
file.tags AS tag
WHERE
file.ctime.year = 2024
GROUP BY
tag
SORT notes DESC