Demo Graphene with SQLAlchemy, SQLite, and Flask.
Install the stuff you'll need:
pip install -r requirements.txt
In the repo directory, run
> ./app.py
then go to http://localhost:5000/graphql and try some queries in the graphical UI.
Here's an example query you can copy and paste into the GraphiQL query window:
{
accounts {
name
locations {
name
address
}
}
}