I was wondering how does Datastore Viewer from the AppEngine admin panel, order the entities?
I know I can run queries on the datastore and sort them any way I wish, but I would like to be able to see the latest entities added to a kind when I go in the Datastore Viewer. Instead, the entities returned by the Datastore Viewer are rather in a random order or ordered by the fist property.
This index.yaml configuration (which indicates to order by date property) seems to have no effect on the results returned by the Datastore Viewer:
indexes:
- kind: HitLog
ancestor: yes
properties:
- name: Date
direction: desc