ManyToMany
class¶
edgy.ManyToManyField
¶
Bases: ForeignKeyFieldFactory
methods_overwritable_by_factory
class-attribute
instance-attribute
¶
methods_overwritable_by_factory = frozenset(default_methods_overwritable_by_factory)
build_field
classmethod
¶
build_field(**kwargs)
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/fields/factories.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
|
overwrite_methods
classmethod
¶
overwrite_methods(field_obj)
Called in metaclasses
PARAMETER | DESCRIPTION |
---|---|
field_obj |
TYPE:
|
Source code in edgy/core/db/fields/factories.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|
repack
classmethod
¶
repack(field_obj)
PARAMETER | DESCRIPTION |
---|---|
field_obj |
TYPE:
|
Source code in edgy/core/db/fields/factories.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|
get_constraints
classmethod
¶
get_constraints(**kwargs)
Returns the propery column type for the field, None for Metafields
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/fields/factories.py
129 130 131 132 |
|
get_column_type
classmethod
¶
get_column_type(**kwargs)
Returns the propery column type for the field, None for Metafields
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/fields/factories.py
134 135 136 137 |
|
get_pydantic_type
classmethod
¶
get_pydantic_type(**kwargs)
Returns the type for pydantic
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/fields/factories.py
139 140 141 142 |
|
_get_field_cls
cached
staticmethod
¶
_get_field_cls()
Source code in edgy/core/db/fields/factories.py
144 145 146 147 |
|
__new__
¶
__new__(to, *, through=None, from_fields=(), to_fields=(), **kwargs)
PARAMETER | DESCRIPTION |
---|---|
to |
TYPE:
|
through |
TYPE:
|
from_fields |
TYPE:
|
to_fields |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/fields/many_to_many.py
287 288 289 290 291 292 293 294 295 296 297 298 |
|
validate
classmethod
¶
validate(kwargs)
PARAMETER | DESCRIPTION |
---|---|
kwargs |
TYPE:
|
Source code in edgy/core/db/fields/many_to_many.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|