Query on dataview/metadata

Things I have tried

Hi, I have a dataview query showing a table of shows that are recommended to watch. They are tagged with #towatch and the query is:
Table Title
from #towatch
sort file.ctime desc
I am wondering the best way to remove them after I watch them. I know just removing the #watch tag will remove them but would love to have a tick box that when ticked it removes the file from the data view query. Any ideas?

What I’m trying to do

I am not a complete dataview expert, but if you add something like - [ ] have to watch this to your files, you can add a dataviewjs query which can do exactly what you want:

dv.taskList(dv.pages("#towatch").file.tasks
.where(t => !t.completed))

If you then tick the box directly in your dataview query result, the respective result will disappear.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.