├── .gitignore ├── README.md ├── bookstore ├── __init__.py ├── schema.py ├── settings.py ├── store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── books.json │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── urls.py └── wsgi.py ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/README.md -------------------------------------------------------------------------------- /bookstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookstore/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/schema.py -------------------------------------------------------------------------------- /bookstore/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/settings.py -------------------------------------------------------------------------------- /bookstore/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookstore/store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/store/admin.py -------------------------------------------------------------------------------- /bookstore/store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/store/apps.py -------------------------------------------------------------------------------- /bookstore/store/fixtures/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/store/fixtures/books.json -------------------------------------------------------------------------------- /bookstore/store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /bookstore/store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookstore/store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/store/models.py -------------------------------------------------------------------------------- /bookstore/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/urls.py -------------------------------------------------------------------------------- /bookstore/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/bookstore/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaorafaelm/graphql-django-example/HEAD/requirements.txt --------------------------------------------------------------------------------