In my mobile app (in Swift), I query a feature service in ArcGIS Online. My where clause looks like this:
EditDate <SPAN class="operator token">></SPAN> <SPAN class="keyword token">TIMESTAMP</SPAN> <SPAN class="string token">'2018-11-17 23:29:34'</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
My results include records with EditDate equal to the timestamp. I have printed the six returned features' EditDates to the console to make sure I wasn't missing something. They all printed this: "2018-11-17 23:29:34 +0000". Is this a bug in the query routines? Does the EditDate field hold the fraction of the second when the edit actually took place? If so, is there a way for me to access the fractional part in a query?