Filtering by property values in Bases

Perhaps this confusion is coming from me using Obsidian incorrectly, but I’m having trouble figuring out how to filter by property type in Bases. Let’s say I have a text property called “project,” where notes can be assigned to a particular project via this property. I now want to create a Base that filters for all files with a particular property value. In the Filter menu, I can see the option “where file has property “project””, but no option to pick out a particular value - it just shows all notes with the “project” property irrespective of their values. How can I filter for this? And is the fact that this doesn’t seem to be easily doable a sign that I’m structuring my notes in a dumb way?

Hi.

Should be able to do something along the lines of this sample note / base:

---
project: rule the world
---

```base
views:
  - type: table
    name: Table
    filters:
      and:
        - project == "rule the world"
```