1.6 KiB
models.mixins.merge_mixin
MergeModelMixin Objects
class MergeModelMixin()
Used to merge models instances returned by database, but already initialized to ormar Models.keys
Models can duplicate during joins when parent model has multiple child rows, in the end all parent (main) models should be unique.
merge_instances_list
| @classmethod
| merge_instances_list(cls, result_rows: Sequence["Model"]) -> Sequence["Model"]
Merges a list of models into list of unique models.
Models can duplicate during joins when parent model has multiple child rows, in the end all parent (main) models should be unique.
Arguments:
result_rows (List["Model"]): list of already initialized Models with child models populated, each instance is one row in db and some models can duplicate
Returns:
(List["Model"]): list of merged models where each main model is unique
merge_two_instances
| @classmethod
| merge_two_instances(cls, one: "Model", other: "Model") -> "Model"
Merges current (other) Model and previous one (one) and returns the current Model instance with data merged from previous one.
If needed it's calling itself recurrently and merges also children models.
Arguments:
one (Model): previous model instanceother (Model): current model instance
Returns:
(Model): current Model instance with data merged from previous one.