Hi, your question was not quite clear so I’ll give you a few options.
If you want to query all your tasks from within a note you can write:
```query
task: ""
```
Now, if you want to query only your unfinished tasks:
```query
task-todo: ""
```
Note that you can filter further your tasks by writing text inside the double quotes:
```query
task-todo: "Monday"
```
Hope this helps!