many_to_many
ManyToManyField
Bases: ForeignKeyField
, ormar.QuerySetProtocol
, ormar.RelationProtocol
Actual class returned from ManyToMany function call and stored in model_fields.
Source code in ormar\fields\many_to_many.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
create_default_through_model()
Creates default empty through model if no additional fields are required.
Source code in ormar\fields\many_to_many.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\many_to_many.py
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
|
get_relation_name()
Returns name of the relation, which can be a own name or through model names for m2m models
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\many_to_many.py
239 240 241 242 243 244 245 246 247 248 249 |
|
get_source_model()
Returns model from which the relation comes -> either owner or through model
Returns:
Type | Description |
---|---|
Type["Model"]
|
source model |
Source code in ormar\fields\many_to_many.py
251 252 253 254 255 256 257 258 |
|
get_source_related_name()
Returns name to use for source relation name.
For FK it's the same, differs for m2m fields.
It's either set as related_name
or by default it's field name.
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\many_to_many.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\many_to_many.py
203 204 205 206 207 208 209 210 211 |
|
ManyToMany(to, through=None, *, name=None, unique=False, virtual=False, **kwargs)
Despite a name it's a function that returns constructed ManyToManyField. This function is actually used in model declaration (as ormar.ManyToMany(ToModel, through=ThroughModel)).
Accepts number of relation setting parameters as well as all BaseField ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
ToType
|
target related ormar Model |
required |
through |
Optional[ToType]
|
through model for m2m relation |
None
|
name |
str
|
name of the database field - later called alias |
None
|
unique |
bool
|
parameter passed to sqlalchemy.ForeignKey, unique flag |
False
|
virtual |
bool
|
marks if relation is virtual. It is for reversed FK and auto generated FK on through model in Many2Many relations. |
False
|
kwargs |
Any
|
all other args to be populated by BaseField |
{}
|
Returns:
Type | Description |
---|---|
ManyToManyField
|
ormar ManyToManyField with m2m relation to selected model |
Source code in ormar\fields\many_to_many.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
forbid_through_relations(through)
Verifies if the through model does not have relations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
through |
Type[Model]
|
through Model to be checked |
required |
Source code in ormar\fields\many_to_many.py
32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
populate_m2m_params_based_on_to_model(to, nullable)
Based on target to model to which relation leads to populates the type of the pydantic field to use and type of the target column field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
Type[Model]
|
target related ormar Model |
required |
nullable |
bool
|
marks field as optional/ required |
required |
Returns:
Type | Description |
---|---|
tuple with target pydantic type and target col type
|
Tuple[List, Any] |
Source code in ormar\fields\many_to_many.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|