Class ManyToManyDescriptor

Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.

Declaration

class ManyToManyDescriptor(ReverseManyToOneDescriptor)
source link

Documentation

In the example::

    class Pizza(Model):
        toppings = ManyToManyField(Topping, related_name='pizzas')

``Pizza.toppings`` and ``Topping.pizzas`` are ``ManyToManyDescriptor``
instances.

Most of the implementation is delegated to a dynamically defined manager
class built by ``create_forward_many_to_many_manager()`` defined below.

Methods

Inherited methods

Reexports