├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── graphene_django_crud ├── __init__.py ├── base_types.py ├── converter.py ├── fields.py ├── input_types.py ├── registry.py ├── settings.py ├── types.py └── utils.py ├── runtests.py ├── setup.py └── tests ├── __init__.py ├── apps.py ├── choices_converter ├── __init__.py ├── models.py └── schema.py ├── client.py ├── connection ├── __init__.py ├── models.py ├── schema.py └── test_main.py ├── djangocontribauth ├── __init__.py ├── schema.py ├── signal.py └── test_main.py ├── file_field ├── __init__.py ├── files │ ├── fork.jpg │ └── lorem.txt ├── http_multipart.py ├── models.py ├── schema.py └── test_main.py ├── generate_schema ├── __init__.py ├── models.py ├── schema.py └── test_model_type.py ├── issues ├── __init__.py ├── models.py ├── schema.py └── test_issue_8.py ├── models.py ├── relationship ├── __init__.py ├── models.py ├── schema.py ├── test_foreignkey.py ├── test_many_to_many.py ├── test_one_to_one.py └── test_self_relation.py ├── relay ├── __init__.py ├── models.py ├── schema.py └── test_main.py ├── rundevserver.py ├── schema.py ├── signals.py ├── test_settings.py ├── urls.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | *$py.class 4 | *.egg-info 5 | 6 | build/ 7 | dist/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/README.md -------------------------------------------------------------------------------- /graphene_django_crud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/__init__.py -------------------------------------------------------------------------------- /graphene_django_crud/base_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/base_types.py -------------------------------------------------------------------------------- /graphene_django_crud/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/converter.py -------------------------------------------------------------------------------- /graphene_django_crud/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/fields.py -------------------------------------------------------------------------------- /graphene_django_crud/input_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/input_types.py -------------------------------------------------------------------------------- /graphene_django_crud/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/registry.py -------------------------------------------------------------------------------- /graphene_django_crud/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/settings.py -------------------------------------------------------------------------------- /graphene_django_crud/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/types.py -------------------------------------------------------------------------------- /graphene_django_crud/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/graphene_django_crud/utils.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/apps.py -------------------------------------------------------------------------------- /tests/choices_converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/choices_converter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/choices_converter/models.py -------------------------------------------------------------------------------- /tests/choices_converter/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/choices_converter/schema.py -------------------------------------------------------------------------------- /tests/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/client.py -------------------------------------------------------------------------------- /tests/connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/connection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/connection/models.py -------------------------------------------------------------------------------- /tests/connection/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/connection/schema.py -------------------------------------------------------------------------------- /tests/connection/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/connection/test_main.py -------------------------------------------------------------------------------- /tests/djangocontribauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/djangocontribauth/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/djangocontribauth/schema.py -------------------------------------------------------------------------------- /tests/djangocontribauth/signal.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from .schema import * 3 | -------------------------------------------------------------------------------- /tests/djangocontribauth/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/djangocontribauth/test_main.py -------------------------------------------------------------------------------- /tests/file_field/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file_field/files/fork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/file_field/files/fork.jpg -------------------------------------------------------------------------------- /tests/file_field/files/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/file_field/files/lorem.txt -------------------------------------------------------------------------------- /tests/file_field/http_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/file_field/http_multipart.py -------------------------------------------------------------------------------- /tests/file_field/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/file_field/models.py -------------------------------------------------------------------------------- /tests/file_field/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/file_field/schema.py -------------------------------------------------------------------------------- /tests/file_field/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/file_field/test_main.py -------------------------------------------------------------------------------- /tests/generate_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generate_schema/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/generate_schema/models.py -------------------------------------------------------------------------------- /tests/generate_schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/generate_schema/schema.py -------------------------------------------------------------------------------- /tests/generate_schema/test_model_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/generate_schema/test_model_type.py -------------------------------------------------------------------------------- /tests/issues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/issues/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/issues/models.py -------------------------------------------------------------------------------- /tests/issues/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/issues/schema.py -------------------------------------------------------------------------------- /tests/issues/test_issue_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/issues/test_issue_8.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/relationship/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/relationship/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relationship/models.py -------------------------------------------------------------------------------- /tests/relationship/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relationship/schema.py -------------------------------------------------------------------------------- /tests/relationship/test_foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relationship/test_foreignkey.py -------------------------------------------------------------------------------- /tests/relationship/test_many_to_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relationship/test_many_to_many.py -------------------------------------------------------------------------------- /tests/relationship/test_one_to_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relationship/test_one_to_one.py -------------------------------------------------------------------------------- /tests/relationship/test_self_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relationship/test_self_relation.py -------------------------------------------------------------------------------- /tests/relay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/relay/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relay/models.py -------------------------------------------------------------------------------- /tests/relay/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relay/schema.py -------------------------------------------------------------------------------- /tests/relay/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/relay/test_main.py -------------------------------------------------------------------------------- /tests/rundevserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/rundevserver.py -------------------------------------------------------------------------------- /tests/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/schema.py -------------------------------------------------------------------------------- /tests/signals.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from .djangocontribauth.signal import * 3 | -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djipidi/graphene_django_crud/HEAD/tests/utils.py --------------------------------------------------------------------------------