Attempting a date query from a postgresql database to try and get all rows where the date is past a specific day.
Attempting a Select Query i have tried the below which works fine running the query against the database itself, but in the flow gives an error:
select * from timesheets where date >= '2024-10-07'
error:
"Term 'select * from timesheets where date >= '2024-10-07'' is not valid in a $select or $expand expression.
I have also tried using ODATA querys like
date gt 2024-10-07
and
date gt 2024-10-07T00:00:00Z
and these gives no error but also returns no results.
Note that the date format in the database is 'YYYY-MM-DD' in a date column, if i allow the query to get all results, the date column is returned as '"date": "2024-10-02"'
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.