Dynamic base for property list

So I’m new to bases and trying to create dynamic links for topics. In my notes I have a “topics” property that I’m able to query by using the following formulas

so any note I click on, this base will give me all the notes with the same topic. But this only works with notes that have a single topic.

I have notes that have multiple topics (Topic A, B, C) and I want a query that gives me all notes that have either A, B, or C.

similarly, if I had a note withe multiple keywords, I’d like to use bases to find notes with all the same (AND/OR) keywords.

Thanks,

Antonio

1 Like

If you properties are list properties you need to adjust your formula.

You can test this :list(note.topic).filter(this.topic.contains(value)).

This worked perfectly. Thank you so much.