What I’m trying to do
I’m trying to create a query which pulls all tasks with a link to the current page. I’m using the tasks and dataview plug ins
Things I have tried
using dataview
TASK
WHERE contains(file.outlinks, this.file.link)
I’m trying to create a query which pulls all tasks with a link to the current page. I’m using the tasks and dataview plug ins
using dataview
TASK
WHERE contains(file.outlinks, this.file.link)
the issue is that the query was pulling all tasks from the file (not just the ones with the link to the current page
I managed to solve this issue using
TASK
WHERE contains(outlinks, this.file.link)
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.