Playground
Orphans
list
from ""
where length(file.inlinks) = 0
and contains(file.tags, "daily") = false
and contains(file.tags, "MOC") = false
and contains(file.name, "Report") = false
and contains(file.name, "Meeting") = false
sort file.name asc
Later
list
from #later
sort file.ctime asc
Literatures
table source as Source, file.ctime as Created
where contains(source, "10.")
sort file.ctime asc
Examples
Query all notes that have #blockchain
and #evergreen
tags:
list
from #blockchain and #evergreen
Query file name and file size of all notes in 001 Software Development:
table file.size as "File size"
from [[001 Software Development]]
Query all index files in 001 Software Development, sort by created date:
table created as "Created date"
from outgoing([[001 Software Development]])
where contains(tags, "evergreen") = false
sort created desc