is it possible to ask parent for its refered collection_name based on one of its keys, lets say i have a parent db model and its key, can i know ths children who refer to this parent through collection name or otherwise
class Parent(db.Model):
user = db.UserProperty()
class Childs(db.Model):
refer = db.ReferenceProperty(Parent,collection_name='children')