Things I have tried
My code:
TABLE WITHOUT ID file.link as "Feature"
FROM "features"
WHERE team_name = this.file.name AND type = "feature"
SORT file.link desc
What I’m trying to do
If there’s a note like this:
---
type: feature
team_name: [FOO, BAR]
---
the query should return this note, because at least one value matches. So far it only looks for 100% matches in the team_name key.