├── .gitignore ├── README.md ├── apps ├── __init__.py ├── cards │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── schema.py │ ├── tests.py │ └── views.py ├── decks │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── schema.py │ ├── tests.py │ └── views.py ├── schema │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── schema.py │ ├── tests.py │ └── views.py ├── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── utils │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cards/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/cards/admin.py -------------------------------------------------------------------------------- /apps/cards/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/cards/apps.py -------------------------------------------------------------------------------- /apps/cards/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/cards/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/cards/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cards/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/cards/models.py -------------------------------------------------------------------------------- /apps/cards/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/cards/schema.py -------------------------------------------------------------------------------- /apps/cards/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/cards/tests.py -------------------------------------------------------------------------------- /apps/cards/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/decks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/decks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/decks/admin.py -------------------------------------------------------------------------------- /apps/decks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/decks/apps.py -------------------------------------------------------------------------------- /apps/decks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/decks/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/decks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/decks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/decks/models.py -------------------------------------------------------------------------------- /apps/decks/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/decks/schema.py -------------------------------------------------------------------------------- /apps/decks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/decks/tests.py -------------------------------------------------------------------------------- /apps/decks/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/schema/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/schema/admin.py -------------------------------------------------------------------------------- /apps/schema/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/schema/apps.py -------------------------------------------------------------------------------- /apps/schema/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/schema/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/schema/models.py -------------------------------------------------------------------------------- /apps/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/schema/schema.py -------------------------------------------------------------------------------- /apps/schema/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/schema/tests.py -------------------------------------------------------------------------------- /apps/schema/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/users/tests.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/utils/admin.py -------------------------------------------------------------------------------- /apps/utils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/utils/apps.py -------------------------------------------------------------------------------- /apps/utils/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/utils/models.py -------------------------------------------------------------------------------- /apps/utils/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/apps/utils/tests.py -------------------------------------------------------------------------------- /apps/utils/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/manage.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenf/django-graphql-srl/HEAD/pyproject.toml --------------------------------------------------------------------------------