Create a base filtered in a property in the current note

What I’m trying to do

Trying to create a base filtered depending on a property value

Things I have tried

Tried creating a filter in the format property == {{property_value}} from the current note, but I get no results. The property in question is a string but contains links to other notes in the form [[link_to_other_note]]. In markdown this value is stored in the current and target notes as “[[property_value]]”. I don’t know how to format this query. Doesn’t work with operator is or contains. Thanks in advance if you can help.

You can use this to refer to the current note: Bases syntax - Access properties with this - Obsidian Help

If I’m understanding correctly, you’re wanting the filter:

theProperty == this.theProperty

Encode it if the property key has spaces or other specials characters:

note["the property"] == this["the property"]

Ab fab. Thank you that works

note[“the property”] == this[“the property”]