On Wednesday, March 4, 2020 at 2:08:48 AM UTC-8, vpl wrote: > > I try to retrieve tiddlers that have been modified before a specific time > (not date ..) > The below filter > <$list filter="[tag[spotify-track]get[modified]]"></$list> > returns > 20200303190107647 <http://82.165.251.188:4052/#20200303190107647> > 20200303190706560 <http://82.165.251.188:4052/#20200303190706560> > 20200303155857027 <http://82.165.251.188:4052/#20200303155857027> > 20200304093151389 <http://82.165.251.188:4052/#20200304093151389> > <$list > filter="[tag[spotify-track]get[modified]allafter[20200303155857027]]"></$list> > I get 20200304093151389 which looks strange as this time stamp is 15h58mn > the 3rd of march > and *after this date I should get *3 answer (2 with 19:xx the 3rd and the > one the 4th of march) >
Note that the list you are showing is NOT automatically sorted by date/time value, so the result you get only shows the items after the specfied "marker". Try adding a sort filter, like this: <$list filter="[tag[spotify-track]get[modified]sort[]allafter[20200303155857027]]"></$list> That should give you the results you are expecting. Let me know how it goes. enjoy, -e Eric Shulman TiddlyTools.com: "Small Tools for Big Ideas!" (tm) InsideTiddlyWiki - http://TiddlyTools.com/InsideTW -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/06bf7f6a-d4d9-41c9-a1b8-755c6cbf7d75%40googlegroups.com.

