Flask server implementing GraphQL
Directory Structure
flask_graphql/
├── app/
│ ├── **init**.py
│ ├── blueprints/
│ │ ├── **init**.py
│ │ ├── example_blueprint.py
│ ├── controllers/
│ │ ├── **init**.py
│ │ ├── example_controller.py
│ ├── services/
│ │ ├── **init**.py
│ │ ├── example_service.py
│ ├── schema/
│ │ ├── **init**.py
│ │ ├── schema.py
│ └── config.py
├── run.py
└── requirements.txt