I have set of search documents that have a DateField that I would like to sort by. The values in this field also contain the time. When I try to sort descending by this field, I'm getting the dates to sort correctly, but it seems as though the time is ignored ie:
{
"results": [
{
"photo_create_date": "2016-01-04T16:51:39.096000",
},
{
"photo_create_date": "2016-01-04T17:55:36.483000",
},
{
"photo_create_date": "2016-01-04T22:46:37.141000",
},
{
"photo_create_date": "2016-01-04T16:51:13.450000",
},
{
"photo_create_date": "2016-01-04T22:44:10.289000",
},
{
"photo_create_date": "2016-01-04T22:36:28.252000",
},
{
"photo_create_date": "2015-12-30T18:06:34.511000",
}
]
}
Any idea how to fix this or is this a limitation of the GAE search API?