This is an app that implements a GraphQl api to provide a modern way to query data from a server application.
To make the magic happen, you just need:
- Python 3.10
mkdir graphql-demo
cd graphql-demo
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
To start the server
uvicorn src.app:app --reload
Access the service in http://localhost:8000/graphql.
Marcos Garcia e-mail: mvrgarcia05@gmail.com