Problem while creating time in property

Your date and time values either have to be enclosed in quotes, which will store them as strings, or you need to convert them to date and time types.

return 
    date("2022-03-17") as date,
    localtime("05:33:53") as localtime, 
    time("05:33:53-04:00") as EDT
2 Likes