I can't seem to find a quick answer on how to get Datastore descendants given a reference to the parent entity. Here's a quick example:
# a person who has pets
john=Person(**kwargs)
# pets
fluffy=Pet(parent=john, ...)
rover=Pet(parent=john, ...)
# lengthy details about john that are accessed infrequently
facts=Details(parent=john, ...)
- How can I get the keys for fluffy, rover and facts using john or the key for john?
- With john (or key) can I get key/entity for just facts (not rover, fluffy)?