I was looking for examples wherein in GQL where I can select attributes besides ID and filter by ID as well.
The pseudo code of what I want to accomplish is something like this:
myResults = db.GQLQuery("select __KEY__, ATTR1, ATTR2 from MyTABLE"
"WHERE __key__ > KEY('MyTable',:LAST_ID)
"order by ID DESC LIMIT 100")
I saw some examples wherein I get the Key, but I need to iterate over the keys to get the record.
Is there a way for me to get the record collection based on the KEY/ID criteria?
Thanks In Advance