[google-appengine] Sorting more than 1000 entities

2009-05-18 Thread daiski
Hi. I have more than 1000 entities in one kind (Students). How can I retrieve from (or iterate through) the datastore *all* Students sorted by a StringProperty last_name? Thanks :) Mo --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[google-appengine] Re: Sorting more than 1000 entities

2009-05-19 Thread daiski
Thanks Zheng and Nick! On May 19, 3:41 pm, "Nick Johnson (Google)" wrote: > Hi Daiski, > > You can sort your results by using the .order() method on a Query object: > > q = Student.all().order('last_name'). > > The datastore only supports fetching 1000 r