How do I delete an entire ancestor tree via the API (Python protocol buffer) in Google Cloud Datastore?
For example, if I have entities stored in this structure: grandparent/parent/child, how can I delete the grandparent, and in so doing delete all the children and grandchildren of that "node"?
If I submit a delete request on the grandparent's key, the grandparent entity is deleted, but its children and grandchildren remain, and their path is still grandparent/parent/child, even though the grandparent entity was deleted.