GraphQL Flask app that can be run locally or serverless in the cloud (AWS). Implements the "Star wars" example of the Official GraphQL.org
.\venv\Scripts\activate.bat
cd flask_app
set FLASK_APP=application
flask run
./venv/bin/activate
cd flask_app
export FLASK_APP=application
flask run
Then go to http://localhost:5000/graphql and try for example
{
human(id: "1000") {
name
appearsIn
}
}
Use the provided deploy / cleanup workflows