├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── stale.yml └── workflows │ ├── deploy.yml │ ├── lint.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .ruff.toml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── bin ├── autolinter └── convert_documentation ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── authorization.rst ├── conf.py ├── debug.rst ├── extra-types.rst ├── fields.rst ├── filtering.rst ├── index.rst ├── installation.rst ├── introspection.rst ├── mutations.rst ├── queries.rst ├── requirements.txt ├── schema.py ├── schema.rst ├── settings.rst ├── subscriptions.rst ├── testing.rst ├── tutorial-plain.rst ├── tutorial-relay.rst └── validation.rst ├── examples ├── __init__.py ├── cookbook-plain │ ├── README.md │ ├── __init__.py │ ├── cookbook │ │ ├── __init__.py │ │ ├── ingredients │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── fixtures │ │ │ │ └── ingredients.json │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20161104_0050.py │ │ │ │ ├── 0003_auto_20181018_1746.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── schema.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── recipes │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20161104_0106.py │ │ │ │ ├── 0003_auto_20181018_1728.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── schema.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── schema.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── requirements.txt │ └── setup.cfg ├── cookbook │ ├── README.md │ ├── __init__.py │ ├── cookbook │ │ ├── __init__.py │ │ ├── ingredients │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── fixtures │ │ │ │ └── ingredients.json │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20161104_0050.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── schema.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── recipes │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20161104_0106.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── schema.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── schema.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── dummy_data.json │ ├── manage.py │ ├── requirements.txt │ └── setup.cfg ├── django_test_settings.py └── starwars │ ├── __init__.py │ ├── data.py │ ├── models.py │ ├── schema.py │ └── tests │ ├── __init__.py │ ├── test_connections.py │ ├── test_mutation.py │ └── test_objectidentification.py ├── graphene_django ├── __init__.py ├── compat.py ├── conftest.py ├── constants.py ├── converter.py ├── debug │ ├── __init__.py │ ├── exception │ │ ├── __init__.py │ │ ├── formating.py │ │ └── types.py │ ├── middleware.py │ ├── sql │ │ ├── __init__.py │ │ ├── tracking.py │ │ └── types.py │ ├── tests │ │ ├── __init__.py │ │ └── test_query.py │ └── types.py ├── fields.py ├── filter │ ├── __init__.py │ ├── fields.py │ ├── filters │ │ ├── __init__.py │ │ ├── array_filter.py │ │ ├── global_id_filter.py │ │ ├── list_filter.py │ │ ├── range_filter.py │ │ └── typed_filter.py │ ├── filterset.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── filters.py │ │ ├── test_array_field_contains_filter.py │ │ ├── test_array_field_custom_filter.py │ │ ├── test_array_field_exact_filter.py │ │ ├── test_array_field_overlap_filter.py │ │ ├── test_enum_filtering.py │ │ ├── test_fields.py │ │ ├── test_in_filter.py │ │ ├── test_range_filter.py │ │ └── test_typed_filter.py │ └── utils.py ├── forms │ ├── __init__.py │ ├── converter.py │ ├── forms.py │ ├── mutation.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_converter.py │ │ ├── test_djangoinputobject.py │ │ └── test_mutation.py │ └── types.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── graphql_schema.py ├── registry.py ├── rest_framework │ ├── __init__.py │ ├── models.py │ ├── mutation.py │ ├── serializer_converter.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_field_converter.py │ │ ├── test_multiple_model_serializers.py │ │ └── test_mutation.py │ └── types.py ├── settings.py ├── static │ └── graphene_django │ │ └── graphiql.js ├── templates │ └── graphene │ │ └── graphiql.html ├── tests │ ├── __init__.py │ ├── forms.py │ ├── issues │ │ ├── __init__.py │ │ └── test_520.py │ ├── models.py │ ├── mutations.py │ ├── schema.py │ ├── schema_view.py │ ├── test_command.py │ ├── test_converter.py │ ├── test_fields.py │ ├── test_forms.py │ ├── test_get_queryset.py │ ├── test_query.py │ ├── test_schema.py │ ├── test_types.py │ ├── test_utils.py │ ├── test_views.py │ ├── types.py │ ├── urls.py │ ├── urls_inherited.py │ ├── urls_pretty.py │ └── urls_validation.py ├── types.py ├── utils │ ├── __init__.py │ ├── str_converters.py │ ├── testing.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_str_converters.py │ │ └── test_testing.py │ └── utils.py └── views.py ├── setup.cfg ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = */tests/*,graphene_django/debug/sql/* 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/.ruff.toml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/README.md -------------------------------------------------------------------------------- /bin/autolinter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/bin/autolinter -------------------------------------------------------------------------------- /bin/convert_documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/bin/convert_documentation -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/authorization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/authorization.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/debug.rst -------------------------------------------------------------------------------- /docs/extra-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/extra-types.rst -------------------------------------------------------------------------------- /docs/fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/fields.rst -------------------------------------------------------------------------------- /docs/filtering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/filtering.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/introspection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/introspection.rst -------------------------------------------------------------------------------- /docs/mutations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/mutations.rst -------------------------------------------------------------------------------- /docs/queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/queries.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/schema.py -------------------------------------------------------------------------------- /docs/schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/schema.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/subscriptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/subscriptions.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/tutorial-plain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/tutorial-plain.rst -------------------------------------------------------------------------------- /docs/tutorial-relay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/tutorial-relay.rst -------------------------------------------------------------------------------- /docs/validation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/docs/validation.rst -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook-plain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/README.md -------------------------------------------------------------------------------- /examples/cookbook-plain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/admin.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/apps.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/fixtures/ingredients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/fixtures/ingredients.json -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/migrations/0001_initial.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/migrations/0002_auto_20161104_0050.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/migrations/0002_auto_20161104_0050.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/migrations/0003_auto_20181018_1746.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/migrations/0003_auto_20181018_1746.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/models.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/ingredients/schema.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/ingredients/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/recipes/admin.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/recipes/apps.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/recipes/migrations/0001_initial.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/migrations/0002_auto_20161104_0106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/recipes/migrations/0002_auto_20161104_0106.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/migrations/0003_auto_20181018_1728.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/recipes/migrations/0003_auto_20181018_1728.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/recipes/models.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/recipes/schema.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/recipes/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/schema.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/settings.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/urls.py -------------------------------------------------------------------------------- /examples/cookbook-plain/cookbook/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/cookbook/wsgi.py -------------------------------------------------------------------------------- /examples/cookbook-plain/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/manage.py -------------------------------------------------------------------------------- /examples/cookbook-plain/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook-plain/requirements.txt -------------------------------------------------------------------------------- /examples/cookbook-plain/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=migrations,.git,__pycache__ 3 | -------------------------------------------------------------------------------- /examples/cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/README.md -------------------------------------------------------------------------------- /examples/cookbook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/ingredients/admin.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/ingredients/apps.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/fixtures/ingredients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/ingredients/fixtures/ingredients.json -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/ingredients/migrations/0001_initial.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/migrations/0002_auto_20161104_0050.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/ingredients/migrations/0002_auto_20161104_0050.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/ingredients/models.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/ingredients/schema.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/ingredients/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/recipes/admin.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/recipes/apps.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/recipes/migrations/0001_initial.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/migrations/0002_auto_20161104_0106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/recipes/migrations/0002_auto_20161104_0106.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/recipes/models.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/recipes/schema.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/recipes/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /examples/cookbook/cookbook/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/schema.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/settings.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/urls.py -------------------------------------------------------------------------------- /examples/cookbook/cookbook/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/cookbook/wsgi.py -------------------------------------------------------------------------------- /examples/cookbook/dummy_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/dummy_data.json -------------------------------------------------------------------------------- /examples/cookbook/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/manage.py -------------------------------------------------------------------------------- /examples/cookbook/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/cookbook/requirements.txt -------------------------------------------------------------------------------- /examples/cookbook/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=migrations,.git,__pycache__ 3 | -------------------------------------------------------------------------------- /examples/django_test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/django_test_settings.py -------------------------------------------------------------------------------- /examples/starwars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starwars/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/starwars/data.py -------------------------------------------------------------------------------- /examples/starwars/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/starwars/models.py -------------------------------------------------------------------------------- /examples/starwars/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/starwars/schema.py -------------------------------------------------------------------------------- /examples/starwars/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/starwars/tests/test_connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/starwars/tests/test_connections.py -------------------------------------------------------------------------------- /examples/starwars/tests/test_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/starwars/tests/test_mutation.py -------------------------------------------------------------------------------- /examples/starwars/tests/test_objectidentification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/examples/starwars/tests/test_objectidentification.py -------------------------------------------------------------------------------- /graphene_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/__init__.py -------------------------------------------------------------------------------- /graphene_django/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/compat.py -------------------------------------------------------------------------------- /graphene_django/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/conftest.py -------------------------------------------------------------------------------- /graphene_django/constants.py: -------------------------------------------------------------------------------- 1 | MUTATION_ERRORS_FLAG = "graphene_mutation_has_errors" 2 | -------------------------------------------------------------------------------- /graphene_django/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/converter.py -------------------------------------------------------------------------------- /graphene_django/debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/__init__.py -------------------------------------------------------------------------------- /graphene_django/debug/exception/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/debug/exception/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/exception/formating.py -------------------------------------------------------------------------------- /graphene_django/debug/exception/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/exception/types.py -------------------------------------------------------------------------------- /graphene_django/debug/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/middleware.py -------------------------------------------------------------------------------- /graphene_django/debug/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/debug/sql/tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/sql/tracking.py -------------------------------------------------------------------------------- /graphene_django/debug/sql/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/sql/types.py -------------------------------------------------------------------------------- /graphene_django/debug/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/debug/tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/tests/test_query.py -------------------------------------------------------------------------------- /graphene_django/debug/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/debug/types.py -------------------------------------------------------------------------------- /graphene_django/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/fields.py -------------------------------------------------------------------------------- /graphene_django/filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/__init__.py -------------------------------------------------------------------------------- /graphene_django/filter/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/fields.py -------------------------------------------------------------------------------- /graphene_django/filter/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/filters/__init__.py -------------------------------------------------------------------------------- /graphene_django/filter/filters/array_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/filters/array_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/filters/global_id_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/filters/global_id_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/filters/list_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/filters/list_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/filters/range_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/filters/range_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/filters/typed_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/filters/typed_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/filterset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/filterset.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/filter/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/conftest.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/filters.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_array_field_contains_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_array_field_contains_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_array_field_custom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_array_field_custom_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_array_field_exact_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_array_field_exact_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_array_field_overlap_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_array_field_overlap_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_enum_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_enum_filtering.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_fields.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_in_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_in_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_range_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_range_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/tests/test_typed_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/tests/test_typed_filter.py -------------------------------------------------------------------------------- /graphene_django/filter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/filter/utils.py -------------------------------------------------------------------------------- /graphene_django/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/__init__.py -------------------------------------------------------------------------------- /graphene_django/forms/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/converter.py -------------------------------------------------------------------------------- /graphene_django/forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/forms.py -------------------------------------------------------------------------------- /graphene_django/forms/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/mutation.py -------------------------------------------------------------------------------- /graphene_django/forms/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/forms/tests/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/tests/test_converter.py -------------------------------------------------------------------------------- /graphene_django/forms/tests/test_djangoinputobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/tests/test_djangoinputobject.py -------------------------------------------------------------------------------- /graphene_django/forms/tests/test_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/tests/test_mutation.py -------------------------------------------------------------------------------- /graphene_django/forms/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/forms/types.py -------------------------------------------------------------------------------- /graphene_django/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/management/commands/graphql_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/management/commands/graphql_schema.py -------------------------------------------------------------------------------- /graphene_django/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/registry.py -------------------------------------------------------------------------------- /graphene_django/rest_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/rest_framework/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/rest_framework/models.py -------------------------------------------------------------------------------- /graphene_django/rest_framework/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/rest_framework/mutation.py -------------------------------------------------------------------------------- /graphene_django/rest_framework/serializer_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/rest_framework/serializer_converter.py -------------------------------------------------------------------------------- /graphene_django/rest_framework/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/rest_framework/tests/test_field_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/rest_framework/tests/test_field_converter.py -------------------------------------------------------------------------------- /graphene_django/rest_framework/tests/test_multiple_model_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/rest_framework/tests/test_multiple_model_serializers.py -------------------------------------------------------------------------------- /graphene_django/rest_framework/tests/test_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/rest_framework/tests/test_mutation.py -------------------------------------------------------------------------------- /graphene_django/rest_framework/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/rest_framework/types.py -------------------------------------------------------------------------------- /graphene_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/settings.py -------------------------------------------------------------------------------- /graphene_django/static/graphene_django/graphiql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/static/graphene_django/graphiql.js -------------------------------------------------------------------------------- /graphene_django/templates/graphene/graphiql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/templates/graphene/graphiql.html -------------------------------------------------------------------------------- /graphene_django/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/forms.py -------------------------------------------------------------------------------- /graphene_django/tests/issues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/tests/issues/test_520.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/issues/test_520.py -------------------------------------------------------------------------------- /graphene_django/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/models.py -------------------------------------------------------------------------------- /graphene_django/tests/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/mutations.py -------------------------------------------------------------------------------- /graphene_django/tests/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/schema.py -------------------------------------------------------------------------------- /graphene_django/tests/schema_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/schema_view.py -------------------------------------------------------------------------------- /graphene_django/tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_command.py -------------------------------------------------------------------------------- /graphene_django/tests/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_converter.py -------------------------------------------------------------------------------- /graphene_django/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_fields.py -------------------------------------------------------------------------------- /graphene_django/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_forms.py -------------------------------------------------------------------------------- /graphene_django/tests/test_get_queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_get_queryset.py -------------------------------------------------------------------------------- /graphene_django/tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_query.py -------------------------------------------------------------------------------- /graphene_django/tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_schema.py -------------------------------------------------------------------------------- /graphene_django/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_types.py -------------------------------------------------------------------------------- /graphene_django/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_utils.py -------------------------------------------------------------------------------- /graphene_django/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/test_views.py -------------------------------------------------------------------------------- /graphene_django/tests/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/types.py -------------------------------------------------------------------------------- /graphene_django/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/urls.py -------------------------------------------------------------------------------- /graphene_django/tests/urls_inherited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/urls_inherited.py -------------------------------------------------------------------------------- /graphene_django/tests/urls_pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/urls_pretty.py -------------------------------------------------------------------------------- /graphene_django/tests/urls_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/tests/urls_validation.py -------------------------------------------------------------------------------- /graphene_django/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/types.py -------------------------------------------------------------------------------- /graphene_django/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/utils/__init__.py -------------------------------------------------------------------------------- /graphene_django/utils/str_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/utils/str_converters.py -------------------------------------------------------------------------------- /graphene_django/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/utils/testing.py -------------------------------------------------------------------------------- /graphene_django/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphene_django/utils/tests/test_str_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/utils/tests/test_str_converters.py -------------------------------------------------------------------------------- /graphene_django/utils/tests/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/utils/tests/test_testing.py -------------------------------------------------------------------------------- /graphene_django/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/utils/utils.py -------------------------------------------------------------------------------- /graphene_django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/graphene_django/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphene-django/HEAD/tox.ini --------------------------------------------------------------------------------