Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 557 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 557 Bytes

Small Graphene Test Project

Demo Graphene with SQLAlchemy, SQLite, and Flask.

Get stuff

Install the stuff you'll need:

pip install -r requirements.txt

Try it

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
    }
  }
}