tkhyn / django-gm2m

MIT License
35 stars 23 forks source link

AttributeError: 'GM2MManager' object has no attribute '_apply_rel_filters' #60

Open Mariownyou opened 2 years ago

Mariownyou commented 2 years ago

When use custom prefetch like

EventLog.objects.all().prefetch_related(
      Prefetch(
          'history_links',
          queryset=EventLogThrough.objects.prefetch_related(
              'object'
          ),
      ),
)