upnorthOriginal post
Rank 2: Process
Query.lessThanEqual('nextReminder', now)
I have added the variable again now but I was very surprised that the function didn't error out first, but seemed to be functioning anyway.
Summary
"Now" is not a keyword in queries. It was likely a variable for `Date.now()` that was removed but the function still worked without error. Add the variable back as `now` to ensure proper functionality.