utils
get_relations_sides_and_names(to_field, parent, child)
Determines the names of child and parent relations names, as well as changes one of the sides of the relation into weakref.proxy to model.
:param to_field: field with relation definition :type to_field: ForeignKeyField :param parent: parent model :type parent: Model :param child: child model :type child: Model :return: parent, child, child_name, to_name :rtype: Tuple["Model", "Model", str, str]
Source code in ormar/relations/utils.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
|