Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hardchik/graphql-implementation

Flask server implementing GraphQL
https://github.com/hardchik/graphql-implementation

flask graphql server

Last synced: 12 days ago
JSON representation

Flask server implementing GraphQL

Awesome Lists containing this project

README

        

# graphql-implementation

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