Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the low-level API in Google App Engine for Java and want to get all the child entities of a particular parent entity:

Given the following graph:

Parent (1)
|
+ --- Child A (2)
|    |
|    + --- Child B (3)
|
+ --- Child A (4)

I want a list like the following

[Child A (2), Child B (3), Child A (4)]

Here is my best attempt:

Entity pe = new Entity("parent");

Entity c1 = new Entity("childA", pe.getKey());
Entity c2 = new Entity("childB", c1.getKey());
Entity c3 = new Entity("childA", pe.getKey());

// storage code left out for brevity

Key parentKey = KeyFactory.createKey(null, "parent", 1);

// According to documentation this should work (but does not)
PreparedQuery q = datastore.prepare(new Query(parentKey));
share|improve this question

2 Answers

up vote 2 down vote accepted

I found out that this is a known bug in the local development server. When uploading to google it works fine

share|improve this answer

Wouldn't getKey() be a method, not a property (ent.getKey(), not ent.getKey?

Also, isn't parentKey the same as pe.getKey()?

share|improve this answer
Thank you, I fixed the typo. As far as pe.getKey(), I only have the Id number when the query is actually performed, so I thought I would include how I got the key. – Erick Fleming Jun 15 '09 at 23:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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