Class ManyToManyRel
Used by ManyToManyField to store information about the relation.
Declaration
source linkDocumentation
``_meta.get_fields()`` returns this class to provide access to the field
flags for the reverse relation.
Methods
▶ def __init__(self, field, to, related_name=None, related_query_name=None, ...) override def __init__(
self,
field,
to,
related_name=None,
related_query_name=None,
limit_choices_to=None,
symmetrical=True,
through=None,
through_fields=None,
db_constraint=True,
)
This method overrides django.db.models.fields.reverse_related.ForeignObjectRel.__init__.
▷ def get_related_field(self) Return the field in the 'to' object to which this relationship is tied. Provided for symmetry with ManyToOneRel.