What I’m trying to do
I want to make a list in dataview of all my notes that exceed 1kb in file size. I know I can sort by using file.size. I need to narrow the list to only give me the largest files in my vault.
My way of note-taking builds on a premise that I only take very short and sweet notes. This list could help me do some house cleaning and catch notes that should be broken up into smaller fragments.
Things I have tried
I’m thinking something like
TABLE file.size
WHERE file.size > 1kb
LIMIT 50
SORT file.size desc
(which doesn’t work obviously). What’s the right command?