Trying to query a hosted feature service on its timestamp field (epoch format, long integer) by passing in a TIMESTAMP value. Using this Where clause on the service query interface,
timestampField BETWEEN TIMESTAMP '2020-01-31 00:00:00' AND TIMESTAMP '2020-01-31 23:59:59'
However, it is returning features with a timestampField = 1580435690994 (epoch) which is:
GMT: Friday, January 31, 2020 1:54:50.994
Your time zone: Thursday, January 30, 2020 20:54:50.994 GMT-05:00
So, I'm unsure to properly query this service using the input datetime values.