HI ,
how can i list the titles of all tiddlers with a field value greater than a certain date
<$list filter ="[tag[task]get[endd]compare:date:gt[20230402220000000]]">
i can do this , but it returns the date values stored in the tiddlers matching, how can i list the tiddlers, how can i get the titles to pass in another filter
thanks
Use the :filter[...] filter run prefix
(see https://tiddlywiki.com/#Filter%20Filter%20Run%20Prefix)
<$list filter ="[tag[task]] :filter[get[endd]compare:date:gt[20230402220000000]]">
Thanks, Eric. This is such an important tool. Iām sure Iāve run up against needing to pause and insert this :filter prefix many times, and I have repeatedly sought more roundabout ways to get the list to come out as intended.
I hope Iāll remember it the next time I feel like I need a filter to ātake a step backā from the results itās yielding.