If I have an array of items containing date fields, how can I filter my array to remove any items with a date before 5pm today? I’ve tried using:
{{map(18.`Sorted Shifts`; "start"; "date"; >= addHours(formatDate(now; "YYYY-MM-DD"); 17))}}
But it looks like you can’t include operators in the filter criteria.
I know that I could use an iterator x aggregator combo to filter the array but just thought I’d check whether that can be avoided?