Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hardchik/graphql-implementation
- Owner: Hardchik
- Created: 2024-07-15T10:52:22.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T08:17:49.000Z (4 months ago)
- Last Synced: 2024-07-17T10:24:12.800Z (4 months ago)
- Topics: flask, graphql, server
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```