Help for filter logic needed

Hi all,

I’m trying to build a filter which is based on the filter from the $:/core/ui/PageTemplate/drafts tiddler:

<$list filter="[has[draft.of]!sort[modified]] -[list[$:/StoryList]]">

My problem is, that I have multiple story-lists and I get them by list[$:/columns]addprefix[$:/StoryList-]]

So what I’m trying to do is the following:

<$list filter="[has[draft.of]!sort[modified]] -[list[$:/columns]addprefix[$:/StoryList-]filter<myFilter>]">

where <myFilter> should list the content of the list field of the previously created Story-List tiddlers

Do you have an idea what I can use for <myFilter> or if the filter operator is the right one for this use-case?

What I’m trying to achieve is listing all the tiddlers contained in the different story-lists

Thank you,
Simon

Try this: -[list[$:/columns]addprefix[$:/StoryList-]get[list]enlist-input[]]

3 Likes

Oh wow :smiley: thanks @EricShulman , I wanted to write at this very moment that I found the solution and that sometimes it’s easier than thought :slight_smile:

Thank you!