Returns the bank's subclass data based on its search of bank name and bank state using django-graphene.
- Creating a server using django and then connecting it with the postgres backend.
- Adding all the required tables and views in the backend and inserting all the data.
python manage.py inspectdb --include-viewswill generate the updatedmodels.pyfile according to the changed database.- After updating
models.pyin the django app, externally install graphene for django to avail graphql api service and included it in thesettings.py'sINSTALLED_APPSlist. - Gave a pointer to the schema for graphql endpoint.
- Defining graphql endpoint in
urls.py. - Creating queries and mutations (not needed in current problem).
- Implemented search on multiple fields query.
- Django
- Django graphene
- PostgreSQL
- Heroku
- Postman
For the crazy ones to explore its deployed here and the testcases of the post requests are here.