We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to create a DQL query to fetch tasks that are:
But it also shows tasks that are overdue as well as the ones due in future.
I also tried splitting up the query into two.
still it does not work as intended.
TASK WHERE !completed AND (start <= date(today) OR due = date(today)) AND due != null AND contains(text, "#task") GROUP BY file.link
TASK WHERE !completed AND due = date(today) AND due != null AND contains(text, "#task") GROUP BY file.link
TASK WHERE !completed AND start <= date(today) AND due != null AND contains(text, "#task") GROUP BY file.link
No response
0.5.67
1.6.7
Windows
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What I expected
I am trying to create a DQL query to fetch tasks that are:
What is happening
But it also shows tasks that are overdue as well as the ones due in future.
I also tried splitting up the query into two.
still it does not work as intended.
DQL
JS
No response
Dataview Version
0.5.67
Obsidian Version
1.6.7
OS
Windows
The text was updated successfully, but these errors were encountered: