クエリの数を減らす多対多の関係に対して「すべて追加」または「一括作成」に相当するものがあるかどうか疑問に思っていました(長いリストに対してこれを行います)?
この件に関するドキュメントは、これが不可能であることを示唆しているようです:
https://docs.djangoproject.com/en/dev/topics/db/examples/many_to_many/
**Associate the Article with a Publication:**
a1.publications.add(p1)
**Create another Article, and set it to appear in both Publications:**
a2 = Article(headline='NASA uses Python')
a2.save()
a2.publications.add(p1, p2)
a2.publications.add(p3)