- Schema-first approach
- Implemented in Python
- Modular
- Test-driven Development
- Clone the repo,
git clone https://github.com/satyanmandavilli/graphql-api.git
- Create a virtual environment
$ python3 -m venv .venv
- After the init process completes and the virtual environement is created, you can use the following step to activate it
$ source .venv/bin/activate
- Once the virtual environment is activated, you can install the required dependencies
$ pip install -r requirements.txt
- Run unit tests for GraphQL API
pytest