I've got a table called Person with three columns:
id
name
registeredDate
Where registeredDate
is LocalDateTime
.
I am trying to write a query using Query By GQl as following:
Select * from person
I'm getting the following data output
Id name registeredDate
1 Xyz 2009-10-09(09:30:00.000) IST
When I'm trying with following query:
Select Id, registeredDate from person
I'm getting following output:
Id registeredDate
1. 1255060800000000
I don't know why the datetime
field is not displaying properly. Why it is getting converted automatically. How to make it display as LocalDateTime
format.
Date and time value, returned as part of a projection query, is being converted by the Datastore mode to microsecond integer values.
This is one of the limitations on projections described in the documentation as follows:
You'll need to use other query types to return the
registeredDate
not in microseconds.