I think this might no be a bug but I am confused how to achieve this. Maybe someone can help me out?
What I’m trying to do and Things I have tried
I have a file with a property, e.g.
---
test:
- "hello"
- "[[matchme please]]"
---
In a base query I want to match “please” in test but
test.contains("please")
does not work, and “[[matchme please]]” does. The docs read “value is the substring to search for”. Therefore, I would have assumed that “please” - substring of “[[matchme please]]” - would match, too. Andy ideas, how to achieve this?