You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a question: is there a way for me to get the tasks completed on a certain day? Like specifically I'd like to programatically get the output of the logbook for yesterday.
The text was updated successfully, but these errors were encountered:
start_date, stop_date, and deadline parameters now allow to pass
ISO 8601 dates with an optional operator. The input is converted
to a "Things date" integer prior to running the SQL statement
if it such a date column; otherwise regular UNIX Time is used.
Examples:
'2023-05-22'
'<=2023-05-22'
'>2023-05-22'
In SQL, depending on its column type, the parameter '<2023-05-22'
is converted into
deadline < 132602624
or
date(stopDate, 'unixepoch') < date('2023-05-22')
See also: #96 and thingsapi/things-cli#9
Hey, I love this,
Just a question: is there a way for me to get the tasks completed on a certain day? Like specifically I'd like to programatically get the output of the logbook for yesterday.
The text was updated successfully, but these errors were encountered: