Demo Graphene with SQLAlchemy, SQLite, and Flask.
Install the stuff you'll need:
pip install -r requirements.txtIn the repo directory, run
> ./app.pythen 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
}
}
}