I’d like to have a section in my daily note that uses dataview queries to show me the daily notes I created 6 months ago, 1 year ago, and 5 years go.
I have a property “date” in my template, example:
date: 2023-11-13
Or I suppose I could use the file creation date automatic property.
Not getting any results.
Things I have tried
Here’s what I’m trying for the 6-month query:
TABLE mood
FROM "Daily archive"
WHERE date AND date <= date(today) - dur(6 months) AND date >= date(today) - dur(6 months 7 days)
SORT date DESC
LIMIT 25