Assume the following 3 page setup in my vault with the following pages and content:
- “Project - take over the world.md”
TODO develop this plan
- “Make dinner.md”
this is a [[Project]]
note - the Project page isn’t really created
- “Projects.md”
TABLE file.mtime as Edited
FROM ""
WHERE
contains(file.name, "Project") AND
(
file.name != "Projects"
AND file.name != "Project"
)
I’m trying to script the Projects page to return the prior 2 pages
When I am in reading view - the “Make Dinner” link is not present.
All I have is “Project - take over the world” which I’ll need to do on an empty stomach.
What change to the dataview query is needed in order to also pull in pages that link to the [[Project]] ghost page? Does it involve file.outlinks.file.name?