List all unmentioned files that link to file that holds this dataview query, which haven’t been mentioned yet in the textflow otherwise.
Great for quickly creating MOC files that automatically track and list all files that link to it
list from [[]] and -outgoing([[]]) sort file.name asc
Show all recently created files with outlinks and inlinks
table
file.outlinks as "To", file.inlinks as "From"
from "" sort file.ctime desc
Show all uncreated files (Files that are being linked to in other files but haven’t been created yet) THX @mnvwvnm
TABLE without id
out AS "Uncreated files"
FLATTEN file.outlinks as out
WHERE !(out.file) AND !contains(meta(out).path, "/")
GROUP by out
SORT out ASC
Show all Uncreated files with origin (Files that are being linked to in other files but haven’t been created yet). THX @mnvwvnm
TABLE without id
out AS "Uncreated files", file.link as "Origin"
FLATTEN file.outlinks as out
WHERE !(out.file) AND !contains(meta(out).path, "/")
SORT out ASC
List all outlinks and inlinks of specific file with exclusion of the file that holds this dataview query. (I use it to preview links to and from MOC files one step down the hierarchy)
Files are beeing sorted in the order they appear as links in the flowtext
list from outgoing([[FILENAME]]) or [[FILENAME]] where file.link != [[]] sort file.links asc