Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The official documentation https://developers.google.com/appengine/docs/java/datastore/entities is not clear on the parent relationship of the Datastore: "The Datastore API does not distinguish between creating a new entity and updating an existing one" SO, does saving entity with the same key not only updates properties but also deletes descendant entities?

share|improve this question

1 Answer

According to the test on my local machine (simulated datastore), updating properties does not delete descendant entities. Therefore updates are possible, although are not reflected in the syntax of API.

share|improve this answer

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.