I have to query datastore for entities with key names which are greater or
equals to specified string. Something like this:
def get_pages_by_key_name(key):
p = models.Page(key_name=key)
query = GqlQuery("SELECT * FROM Page WHERE ???? :1", p.key.name())
return [i for i in query]
How can I do that?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/QXpyd0MHk5wJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.