Is it possible to query for dates that are actually liks with dataview?
I have 2x data metadata fields that are actally links (due-date:: [[2022-02-17]]) and would like to do the following queries on them from within this day’s note:
WHERE due-date <= date(this.file.name) AND due-date
WHERE due-date = date(this.file.name) + dur(1 day) AND due-date
WHERE due-date >= date(this.file.name) + dur(2 day) AND due-date <= date(this.file.name) + dur(7 day) AND due-date
I see the issue coming in where I want to do “calculations” and “comparisons” with the field.
I was thinking of using the link(), string() and date() functions, but the issue comes in with comparing to the value in the actual action.
Thanks in advance!