I have several records in my database with the same parent. How can I get all of them by parent?

link|improve this question

Looks like I'll have to create separate property and keep there key_name value of the parent. – LA_ Oct 24 '11 at 15:56
feedback

1 Answer

up vote 2 down vote accepted

OK, looks like the following code works:

items = ITEM.gql('WHERE ANCESTOR IS :parent', parent=parent_key).fetch(5)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.