I have a set of fields indexed by GAE search and can get results thus:
options = search.QueryOptions(returned_fields=['ID', 'firstname', 'lastname']}
query = search.Query('firstname:moe')
This gets me results returned and I can access data in the two name fields. But ID isn't included. I've tried 'doc_id" as well.
How can I get each doc ID with each result?