game_sections = cls.objects.filter(
game=game
).prefetch_related('section').all()
return [game_section.section for game_section in game_sections]
как вместо списка game_section.section вернуть кверисет из game_section.section ? section это ForeignKey
возможно получится через union: https://docs.djangoproject.com/en/3.0/ref/models/querysets/#union
Обсуждают сегодня