Meta dataheader and dataview querying values

This forum, Google, Youtube, changing available queries

So this must be pretty basic to you guys and girls but i’m looking for the right/good way to setup a data header and also include two values that could have multiple values.


owner: [Pete, HR]
contributors: [John, Simon]

and having the right query to list all files where Pete is an owner. I know it’s basic somehow I can’t get it working.

For a yaml frontmatter similar to this:

---
owner: [Pete, HR]
contributors: [John, Simon]
---

Query to list all pages where owner contains “Pete”

```dataview
LIST
WHERE contains(owner, "Pete")
```
2 Likes

Thank you @mnvwvnm that hit the spot.