I’ve a note template that includes a property called Ämne:
Ämne:
- "[[Artificiell intelligens]]"
- "[[Juridik]]"
I’m trying to create a query to list all instances of the inline field t from files with Juridik as value for Ämne:
TABLE t AS Tanke
FROM "05 Källor"
WHERE contains(Ämne, "[[Juridik]]")
But this query returns an empty table. Why?