https://github.com/lagenorhynque/web-api-style-comparison
Web API style comparison: REST, GraphQL, gRPC
https://github.com/lagenorhynque/web-api-style-comparison
api-schema graphql graphql-sdl grpc openapi-spec protocol-buffers rest
Last synced: 3 months ago
JSON representation
Web API style comparison: REST, GraphQL, gRPC
- Host: GitHub
- URL: https://github.com/lagenorhynque/web-api-style-comparison
- Owner: lagenorhynque
- Created: 2024-01-31T11:21:11.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-04T17:03:28.000Z (over 2 years ago)
- Last Synced: 2025-10-25T12:00:02.241Z (7 months ago)
- Topics: api-schema, graphql, graphql-sdl, grpc, openapi-spec, protocol-buffers, rest
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# web-api-style-comparison
Web API style comparison: REST, GraphQL, gRPC
## 開発環境構築
### ローカルDBのセットアップ
```sh
# DBの起動
docker compose up -d
# SQLファイルのインポート
## Biblog DBのテーブル定義
docker compose exec -T rdb mysql -uroot -proot biblog < mysql/ddl/biblog-tables.sql
docker compose exec -T rdb-test mysql -uroot -proot biblog_test < mysql/ddl/biblog-tables.sql
## Biblog DBのサンプルデータ
docker compose exec -T rdb mysql -uroot -proot biblog < mysql/dml/biblog-data.sql
```