├── .gitignore ├── README.md ├── backend ├── .coveragerc ├── .gitignore ├── backend │ ├── __init__.py │ ├── middleware.py │ ├── schema.py │ ├── settings.py │ ├── test_settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py ├── pytest.ini └── simple_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── schema.py │ ├── tests │ ├── __init__.py │ ├── test_models.py │ └── test_schema.py │ └── views.py └── frontend ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg ├── registerServiceWorker.js └── views │ ├── CreateView.js │ ├── DetailView.js │ ├── ListView.js │ ├── LoginView.js │ └── LogoutView.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/README.md -------------------------------------------------------------------------------- /backend/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/.coveragerc -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/backend/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/backend/middleware.py -------------------------------------------------------------------------------- /backend/backend/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/backend/schema.py -------------------------------------------------------------------------------- /backend/backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/backend/settings.py -------------------------------------------------------------------------------- /backend/backend/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/backend/test_settings.py -------------------------------------------------------------------------------- /backend/backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/backend/urls.py -------------------------------------------------------------------------------- /backend/backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/backend/wsgi.py -------------------------------------------------------------------------------- /backend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/db.sqlite3 -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE = backend.test_settings 3 | -------------------------------------------------------------------------------- /backend/simple_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/simple_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/admin.py -------------------------------------------------------------------------------- /backend/simple_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/apps.py -------------------------------------------------------------------------------- /backend/simple_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/simple_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/simple_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/models.py -------------------------------------------------------------------------------- /backend/simple_app/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/schema.py -------------------------------------------------------------------------------- /backend/simple_app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/simple_app/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/tests/test_models.py -------------------------------------------------------------------------------- /backend/simple_app/tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/tests/test_schema.py -------------------------------------------------------------------------------- /backend/simple_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/backend/simple_app/views.py -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/registerServiceWorker.js -------------------------------------------------------------------------------- /frontend/src/views/CreateView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/views/CreateView.js -------------------------------------------------------------------------------- /frontend/src/views/DetailView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/views/DetailView.js -------------------------------------------------------------------------------- /frontend/src/views/ListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/views/ListView.js -------------------------------------------------------------------------------- /frontend/src/views/LoginView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/views/LoginView.js -------------------------------------------------------------------------------- /frontend/src/views/LogoutView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/src/views/LogoutView.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrochh/django-graphql-apollo-react-demo/HEAD/frontend/yarn.lock --------------------------------------------------------------------------------