I am wondering if there is any sample code for the ArcREST timeFilter. I understand that it should be in Unix millisecond format. While the following line of code compiles in Python it returns the same number of records that I get without the timeFilter:
data = (fl.query(where="1=1", timeFilter="1482105600000") )
What I would like to get is only those records after that epoch time-stamp. Is my syntax correct? How would I also specify between a start and end time?