I’m currently optimizing the android app, and right now, it gets all tasks from the API to check whether there are reminders set. A filter that would allow “numReminders > 0” or even something like “lastReminder > now” (there is still a reminder in the future) would be amazing for the API.
This would of course be combined with a “(lastReminder > now || due_date > now) && done = false”.
1 Like
I’m sure we can do something here.
Went on to implement this and turns out, this already (kind of) works. You can use a filter query like reminders > now
and it will return all tasks which have at least one reminder in the future. All the usual date filters are available.
If you combine this with filter_include_nulls=false
it will only return tasks which have a reminder set.
Does that work for you?
Yes that works. Thank you!
I just didn’t see the “reminders” filter in the docs, so that’s why I didn’t know about it.
Looks like I forgot to add this to the docs - that’s now fixed!