Friends, am I missing something, or is it really still not possible to fetch Swift Data objects by timestamp? Let's say I want to fetch objects with a timestamp between date A and date B?

@marcel Should be possible with something like this (untested):

Query(filter: #Predicate<Object> { object in
object.date > dateA && object.date < dateB
})

@florianalbrecht Something about this doesn't work. It compiles but doesn't fetch day objects with timestamps that fit the description and I don't know whyyyy
@marcel 🤔