What I’m trying to do
So basically I am trying to add any quotes containing the bullet point [[any author]] under my [[any author]] note.
Things I have tried
This the query I’ve tried though it is not working; it is also adding quotes from any other author.
Query:
TASK
WHERE contains(list("b"), status) AND contains(list("[[Cobain, Kurt]]"), children)
Text in a random note:
- [b] Thank you for the tragedy. I need it for my art.
- [[Cobain, Kurt]]
- [b] U Idiot
- [[Dickinson, Emilie]]
It lists all the quotes just fine but it won’t filter out the other authors.
And I would like to NOT use tags.
Is this even possible to achieve?
Thank you all in advance!
Yes, it’s possible. Focus your task query on those with status ="b"
, and limit on those having subtasks/children with the given links.
1 Like
Yeah, I mean I got it focused on just the status ="b"
no problem.
But how do I limit it to the subtask / children eg. [[Cobain, Kurt]] ?
(Sorry, I am not into coding at all)
I got it to work now.
Code:
```dataview
TASK
WHERE status ="\"" AND contains(subtasks.text, "[[Cobain, Kurt]]")
```
Random note:
- ["] Thank you for the tragedy. I need it for my art.
- [[Cobain, Kurt]]
Thanks to holroy <3
1 Like
holroy
June 9, 2024, 11:07am
5
Another variant of that query focusing in on the outlinks of the subtasks would be:
```dataview
TASK
WHERE status = "\""
AND contains(subtasks.outlinks, [[Cobain, Kurt]])
```
1 Like
system
Closed
July 7, 2024, 11:08am
6
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.