What I’m trying to do
I Am trying a simple dataview query to query for Files which have a specific word in their frontmatter.
TABLE
FROM "Persons"
where Adress and contains(Adress, "finestreet")
normally, this works, but every street has their own file and the filenames are linked in the frontmatter.
The frontmatter looks like this:
Adress: “[[finestreet 9]]”
Can you help me to do it?
Even better would be this:
To query for all files wich are linked to files that have a specific frontmatter-entry themselfes, say Block: Block B.
thank you!!