##Incomplete Reminders Search:
The script is pretty basic and goes like the following:
-reminderDoneTime:00011231 reminderOrder:00011231
###How it works
To start with, reminderDoneTime:[datetime]
returns true if it finds a date that is on or after what is listed. We can invert this by prepending the query with a -
. As a result, -reminderDoneTime:[datetime]
returns true if the note either has no timestamp or if it has a date before [datetime]
.