How to get all the descendants of a given instance of a model in google app engine?

Posted by M.A. Cape on Stack Overflow See other posts from Stack Overflow or by M.A. Cape
Published on 2010-03-25T11:48:46Z Indexed on 2010/03/25 11:53 UTC
Read the original article Hit count: 247

Filed under:

Using parent child relationship where a parent can have children while each child has only one parent, does using Children.all().ancestor(parent.key) a good solution where a child is constructed by setting parent=parent.key in the constructor? Is the 1000 limit applies with this kind of query?

© Stack Overflow or respective owner

Related posts about google-app-engine