https://github.com/hardchik/graphql-implementation
Flask server implementing GraphQL
https://github.com/hardchik/graphql-implementation
flask graphql server
Last synced: about 1 month 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-19T10:19:23.000Z (almost 2 years ago)
- Last Synced: 2024-12-30T21:14:51.993Z (over 1 year ago)
- Topics: flask, graphql, server
- Language: Python
- Homepage:
- Size: 14.6 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
```