What I’m trying to do
I have this query which only shows tasks with the tag #Obsidian-Tasks
TASK
WHERE regextest("^\d\d\d\d-\d\d-\d\d (January|February|March|April|May|June|July|August|September|October|November|December)(?!.+?sync)", file.name)
WHERE contains(list(" "), status) AND contains(tags, "#Obsidian-Tasks")
GROUP BY file.link
SORT rows[0].file.day DESC
I want to change it so it only shows tasks with two tags: #Obsidian-Tasks
and #Later
.
Things I have tried
I did some searching in the documentation for the phrases tag
and tags
as well as the page for the contains() function but didn’t find anything about this.