├── .dockerignore ├── .gitignore ├── .pylintrc ├── Dockerfile ├── GhughuServer ├── __init__.py ├── schema.py ├── settings.py ├── urls.py └── wsgi.py ├── LICENSE ├── README.md ├── docker-entrypoint.sh ├── manage.py ├── requirements.txt └── stemmer ├── __init__.py ├── admin.py ├── apps.py ├── ghughu ├── __init__.py └── ghughu.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── schema.py ├── schemas ├── mutations │ ├── __init__.py │ ├── create_word_record.py │ ├── create_word_record_batch.py │ ├── delete_word_record.py │ ├── delete_word_record_batch.py │ └── update_word_record.py ├── queries │ ├── __init__.py │ ├── fetch_word_records.py │ └── get_word_record_by_id.py └── types │ ├── __init__.py │ └── types.py ├── tests.py └── views.py /.dockerignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .idea/ 3 | .git/ 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | load-plugins=pylint_django -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /GhughuServer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GhughuServer/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/GhughuServer/schema.py -------------------------------------------------------------------------------- /GhughuServer/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/GhughuServer/settings.py -------------------------------------------------------------------------------- /GhughuServer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/GhughuServer/urls.py -------------------------------------------------------------------------------- /GhughuServer/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/GhughuServer/wsgi.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/README.md -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /stemmer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stemmer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/admin.py -------------------------------------------------------------------------------- /stemmer/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/apps.py -------------------------------------------------------------------------------- /stemmer/ghughu/__init__.py: -------------------------------------------------------------------------------- 1 | from .ghughu import stem 2 | -------------------------------------------------------------------------------- /stemmer/ghughu/ghughu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/ghughu/ghughu.py -------------------------------------------------------------------------------- /stemmer/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/migrations/0001_initial.py -------------------------------------------------------------------------------- /stemmer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stemmer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/models.py -------------------------------------------------------------------------------- /stemmer/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schema.py -------------------------------------------------------------------------------- /stemmer/schemas/mutations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/mutations/__init__.py -------------------------------------------------------------------------------- /stemmer/schemas/mutations/create_word_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/mutations/create_word_record.py -------------------------------------------------------------------------------- /stemmer/schemas/mutations/create_word_record_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/mutations/create_word_record_batch.py -------------------------------------------------------------------------------- /stemmer/schemas/mutations/delete_word_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/mutations/delete_word_record.py -------------------------------------------------------------------------------- /stemmer/schemas/mutations/delete_word_record_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/mutations/delete_word_record_batch.py -------------------------------------------------------------------------------- /stemmer/schemas/mutations/update_word_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/mutations/update_word_record.py -------------------------------------------------------------------------------- /stemmer/schemas/queries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/queries/__init__.py -------------------------------------------------------------------------------- /stemmer/schemas/queries/fetch_word_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/queries/fetch_word_records.py -------------------------------------------------------------------------------- /stemmer/schemas/queries/get_word_record_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/queries/get_word_record_by_id.py -------------------------------------------------------------------------------- /stemmer/schemas/types/__init__.py: -------------------------------------------------------------------------------- 1 | from .types import * 2 | -------------------------------------------------------------------------------- /stemmer/schemas/types/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/schemas/types/types.py -------------------------------------------------------------------------------- /stemmer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ghughu-Stemmer/Ghughu-Stemmer-GraphQL-API/HEAD/stemmer/tests.py -------------------------------------------------------------------------------- /stemmer/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | --------------------------------------------------------------------------------