I'd like to reduce the number of queries to delete entities in Google App Engine. I already know how to delete them with ancestor as below sequences.
- Set an ancestor to query and fetch them.
- Convert entities to keys and delete them using keys.
I'd like to remove first step. My expectation is deleting all entities by ancestor without fetching as below.
DELETE FROM DS1 WHERE ancestor is "PARENT"
Is it possible?