I still don’t quite sure about what you want.
Let’s say you populate your notes with inline fields like this:
# My note
blablabla
prompt:: 04/02 do this and that
blablabla
prompt:: 05/02 do other thing
Then you can use a query like this:
```dataview
TABLE filter(prompt, (p) => contains(p, "04/02")) as Prompts
WHERE prompt
```
This is a tricky way, because for now you can’t query the content of your note.
But there’s a way to query the content of tasks!
So, using tasks is another option, together with inline fields . Something like:
# My note
blablabla
- [ ] do this and that (duedate:: 2022-02-04)
blablabla
- [ ] do other thing (duedate:: 2022-02-05)
blablabla
With this option you can use a task query:
```dataview
TASK
WHERE duedate = date(2022-02-04)
```