graphene-django/docs
haukeeckel 920041dbcf
Fixed Django >= 3.2 issue
I faced this issue while doing the Basic Tutorial

```
(env) hauke@haukes-ubuntu:~/Python/Zucker$ python manage.py migrate
Traceback (most recent call last):
  File "/home/hauke/Python/Zucker/env/lib/python3.8/site-packages/django/apps/config.py", line 244, in create
    app_module = import_module(app_name)
  File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'ingredients'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "manage.py", line 22, in <module>
    main()
  File "manage.py", line 18, in main
    execute_from_command_line(sys.argv)
  File "/home/hauke/Python/Zucker/env/lib/python3.8/site-packages/django/core/management/__init__.py", line 419, in execute_from_command_line
    utility.execute()
  File "/home/hauke/Python/Zucker/env/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
    django.setup()
  File "/home/hauke/Python/Zucker/env/lib/python3.8/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/home/hauke/Python/Zucker/env/lib/python3.8/site-packages/django/apps/registry.py", line 91, in populate
    app_config = AppConfig.create(entry)
  File "/home/hauke/Python/Zucker/env/lib/python3.8/site-packages/django/apps/config.py", line 246, in create
    raise ImproperlyConfigured(
django.core.exceptions.ImproperlyConfigured: Cannot import 'ingredients'. Check that 'cookbook.ingredients.apps.IngredientsConfig.name' is correct.
```
2021-07-03 21:06:54 +02:00
..
_static Update doc setup (#673) 2019-06-14 12:33:37 +01:00
authorization.rst document auth pattern: return None with resolve method (#1106) 2021-02-02 09:58:21 -08:00
conf.py Python 3 (#904) 2020-04-06 13:21:07 +01:00
debug.rst enhancement: DjangoDebugContext captures exceptions and allows captured stack traces to be queried (#1122) 2021-03-02 10:45:46 -08:00
extra-types.rst Add extra types documentation (#902) 2020-05-09 12:19:02 +01:00
fields.rst document purpose of DjangoConnectionField (#1107) 2021-02-02 09:58:43 -08:00
filtering.rst Add typed filters (v3) (#1148) 2021-03-31 10:31:45 -07:00
index.rst Update GraphiQL, add GraphiQL subscription support (#1001) 2020-07-12 14:42:31 +01:00
installation.rst WIP: Merge master into v3 (#1086) 2020-12-30 15:37:57 -08:00
introspection.rst Detect format from output file path (#868) 2020-03-13 10:04:55 +00:00
Makefile Update doc setup (#673) 2019-06-14 12:33:37 +01:00
mutations.rst WIP: Merge master into v3 (#1086) 2020-12-30 15:37:57 -08:00
queries.rst WIP: Merge master into v3 (#1086) 2020-12-30 15:37:57 -08:00
requirements.txt Update doc setup (#673) 2019-06-14 12:33:37 +01:00
schema.py Warn if fields or exclude are not defined on DjangoObjectType (#981) 2020-06-11 11:09:52 +01:00
schema.rst Rebuild documentation 2019-05-07 19:23:01 +01:00
settings.rst Merge branch 'master' into v3 2020-08-12 07:06:35 +01:00
subscriptions.rst Update GraphiQL, add GraphiQL subscription support (#1001) 2020-07-12 14:42:31 +01:00
testing.rst Added GraphQLTransactionTestCase (#1099) 2021-02-22 20:24:02 -08:00
tutorial-plain.rst Fixed Django >= 3.2 issue 2021-07-03 21:06:54 +02:00
tutorial-relay.rst Tox & actions updates (#1143) 2021-03-24 09:32:37 +03:00