[Answer]-Why will my django manytomany through only allow access through related_name?

1👍

✅

I can’t repeat that. Using your models, with additional name fields:

>>> from models import Collection, Item, CollectionItem
>>> c = Collection.objects.create(name='coll1')
>>> c.collectionitem_set.all()
[]

Leave a comment