├── .circleci └── config.yml ├── .env ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── TODO.txt ├── django_auto_prefetching └── __init__.py ├── manage.py ├── setup.py ├── test_project ├── __init__.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_childb_childb_text.py │ ├── 0003_auto_20190415_1832.py │ ├── 0004_auto_20190415_1921.py │ ├── 0005_auto_20190415_1952.py │ ├── 0006_singlechildtoy.py │ ├── 0007_auto_20190415_2003.py │ ├── 0008_auto_20190415_2003.py │ ├── 0009_auto_20190415_2025.py │ ├── 0010_auto_20201221_1549.py │ └── __init__.py ├── models.py ├── serializers │ ├── __init__.py │ ├── child_a_serializer.py │ ├── child_b_serializers.py │ ├── many_to_many_serializer.py │ ├── nested_serializer.py │ └── top_level_serializer.py ├── settings.py ├── tests │ ├── __init__.py │ ├── test_get_prefetchable_queryset_override.py │ ├── test_queryset_override.py │ └── tests.py ├── urls.py ├── views.py └── wsgi.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | DJANGO_SETTINGS_MODULE=test_project.settings -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/TODO.txt -------------------------------------------------------------------------------- /django_auto_prefetching/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/django_auto_prefetching/__init__.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/apps.py -------------------------------------------------------------------------------- /test_project/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0001_initial.py -------------------------------------------------------------------------------- /test_project/migrations/0002_childb_childb_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0002_childb_childb_text.py -------------------------------------------------------------------------------- /test_project/migrations/0003_auto_20190415_1832.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0003_auto_20190415_1832.py -------------------------------------------------------------------------------- /test_project/migrations/0004_auto_20190415_1921.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0004_auto_20190415_1921.py -------------------------------------------------------------------------------- /test_project/migrations/0005_auto_20190415_1952.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0005_auto_20190415_1952.py -------------------------------------------------------------------------------- /test_project/migrations/0006_singlechildtoy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0006_singlechildtoy.py -------------------------------------------------------------------------------- /test_project/migrations/0007_auto_20190415_2003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0007_auto_20190415_2003.py -------------------------------------------------------------------------------- /test_project/migrations/0008_auto_20190415_2003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0008_auto_20190415_2003.py -------------------------------------------------------------------------------- /test_project/migrations/0009_auto_20190415_2025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0009_auto_20190415_2025.py -------------------------------------------------------------------------------- /test_project/migrations/0010_auto_20201221_1549.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/migrations/0010_auto_20201221_1549.py -------------------------------------------------------------------------------- /test_project/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/models.py -------------------------------------------------------------------------------- /test_project/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/serializers/child_a_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/serializers/child_a_serializer.py -------------------------------------------------------------------------------- /test_project/serializers/child_b_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/serializers/child_b_serializers.py -------------------------------------------------------------------------------- /test_project/serializers/many_to_many_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/serializers/many_to_many_serializer.py -------------------------------------------------------------------------------- /test_project/serializers/nested_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/serializers/nested_serializer.py -------------------------------------------------------------------------------- /test_project/serializers/top_level_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/serializers/top_level_serializer.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/tests/test_get_prefetchable_queryset_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/tests/test_get_prefetchable_queryset_override.py -------------------------------------------------------------------------------- /test_project/tests/test_queryset_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/tests/test_queryset_override.py -------------------------------------------------------------------------------- /test_project/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/tests/tests.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /test_project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/views.py -------------------------------------------------------------------------------- /test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/test_project/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeeWee/django-auto-prefetching/HEAD/tox.ini --------------------------------------------------------------------------------