├── .gitignore ├── .vscode └── extensions.json ├── 01-basics-final └── example.py ├── 01-basics └── example.py ├── 02-object-types-final └── example.py ├── 02-object-types └── example.py ├── 03-django ├── example │ ├── __init__.py │ ├── graphql.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py └── manage.py ├── 04-django-channels ├── example │ ├── __init__.py │ ├── graphql.py │ ├── routing.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /01-basics-final/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/01-basics-final/example.py -------------------------------------------------------------------------------- /01-basics/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/01-basics/example.py -------------------------------------------------------------------------------- /02-object-types-final/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/02-object-types-final/example.py -------------------------------------------------------------------------------- /02-object-types/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/02-object-types/example.py -------------------------------------------------------------------------------- /03-django/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-django/example/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/03-django/example/graphql.py -------------------------------------------------------------------------------- /03-django/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/03-django/example/settings.py -------------------------------------------------------------------------------- /03-django/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/03-django/example/urls.py -------------------------------------------------------------------------------- /03-django/example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/03-django/example/views.py -------------------------------------------------------------------------------- /03-django/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/03-django/example/wsgi.py -------------------------------------------------------------------------------- /03-django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/03-django/manage.py -------------------------------------------------------------------------------- /04-django-channels/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-django-channels/example/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/04-django-channels/example/graphql.py -------------------------------------------------------------------------------- /04-django-channels/example/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/04-django-channels/example/routing.py -------------------------------------------------------------------------------- /04-django-channels/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/04-django-channels/example/settings.py -------------------------------------------------------------------------------- /04-django-channels/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/04-django-channels/example/urls.py -------------------------------------------------------------------------------- /04-django-channels/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/04-django-channels/example/wsgi.py -------------------------------------------------------------------------------- /04-django-channels/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/04-django-channels/manage.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/graphql-workshop/HEAD/requirements.txt --------------------------------------------------------------------------------