Any reliable way to filter by checking if an array includes a value? I have files with:
---
School: [NFHS]
---
and
---
School: [NFHS, FHS]
---
When I use the following, both files are returned:
```dataview
TABLE Season
WHERE contains(School,"FHS")
Any way to create a query that would only return the second file?
Thanks!