Class ManyToManyField

Provide a many-to-many relation by using an intermediary model that holds two ForeignKey fields pointed at the two sides of the relation.

Declaration

class ManyToManyField(RelatedField)
source link

Documentation

Unless a ``through`` model was provided, ManyToManyField will use the
create_many_to_many_intermediary_model factory to automatically generate
the intermediary model.

Methods

Inherited methods

Reexports