Is there a way to delete a _lot_ of child entities? Some of which have no parents (the parent was deleted without deleting the related child entity)
Currently, I'm thinking the way to do this (maybe the only way?) is to find the parent entities to be deleted, then query the related child entity, add them all into an array and call `delete_multi`. (we're using python-ndb)
In practice this means 1 query per parent entity. for 100k parents, that's 100k queries. Is there not a better way to do this? Are there datastore limitations around making a query like this?