What I’m trying to do
I am looking for a way to use the note my query is as the source in the query, without the name of the file. I would love the this in a query such as TABLE review FROM this.
My case is as follows. I would like to gather all the questions I have in a note at the top of the note.
I have prefixed questions with question:: . So for instance, in my note, I have added
some texts. ....
question:: how do we do this?
some other text .....
question:: is it possible in a simple manner?
I want to avoid providing the whole path to the note so that if I move the note around, the dataview query remains OK.
Things I have tried
I have tried
TABLE WITHOUT ID
question AS Questions
FROM "foldername/my_note"
and it works. But if I move my note or rename it, the query is not modified automatically and therefore it breaks.
I have tried this, this.file, [[file.title]], [[file.path]] after FROM. Without success.
Any help is welcome.