├── .coveragerc ├── .github └── workflows │ └── test-suite.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── graphql_extensions ├── __init__.py ├── decorators.py ├── exceptions.py ├── locale │ └── es │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── lookups.py ├── settings.py ├── shortcuts.py ├── test.py ├── types.py └── views.py ├── requirements ├── flake8.txt └── test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── schema.py ├── settings.py ├── test_decorators.py ├── test_lookups.py ├── test_settings.py ├── test_shortcuts.py ├── test_test.py ├── test_types.py └── test_views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = graphql_extensions 3 | branch = True 4 | -------------------------------------------------------------------------------- /.github/workflows/test-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/.github/workflows/test-suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/README.rst -------------------------------------------------------------------------------- /graphql_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.0' 2 | -------------------------------------------------------------------------------- /graphql_extensions/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/decorators.py -------------------------------------------------------------------------------- /graphql_extensions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/exceptions.py -------------------------------------------------------------------------------- /graphql_extensions/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /graphql_extensions/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /graphql_extensions/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/lookups.py -------------------------------------------------------------------------------- /graphql_extensions/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/settings.py -------------------------------------------------------------------------------- /graphql_extensions/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/shortcuts.py -------------------------------------------------------------------------------- /graphql_extensions/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/test.py -------------------------------------------------------------------------------- /graphql_extensions/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/types.py -------------------------------------------------------------------------------- /graphql_extensions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/graphql_extensions/views.py -------------------------------------------------------------------------------- /requirements/flake8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/requirements/flake8.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/schema.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/test_lookups.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/test_shortcuts.py -------------------------------------------------------------------------------- /tests/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/test_test.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/test_types.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavors/django-graphql-extensions/HEAD/tox.ini --------------------------------------------------------------------------------