Hello.
- Make sure Obsidian > Settings > Dataview > Enable JavaScript Queries is toggled on.
- The text below should work. Use ‘paste as plain text’ or ‘paste and match style’ to retain all the formatting when copying from the forum to a local note.
- [x] #to/research an idea
- [ ] #to/research a second idea
- [ ] #to/research a third idea
## query
```dataviewjs
dv.taskList(dv.pages("#to/research").file.tasks
.where(t => t.text.includes("#to/research"))
.where(t => !t.completed))
```
