2021-07-19 22:31:02 +09:00
|
|
|
---
|
|
|
|
marp: true
|
|
|
|
paginate: true
|
|
|
|
---
|
|
|
|
|
|
|
|
# Hasura 概論
|
|
|
|
|
|
|
|
WebDINO Japan エンジニア
|
|
|
|
[渡邉浩平](https://github.com/kou029w)
|
|
|
|
![w:200](https://github.com/kou029w.png)
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2021-07-20 14:58:37 +09:00
|
|
|
## Hasura
|
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
https://hasura.io
|
2021-07-20 14:58:37 +09:00
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
GraphQL サーバー
|
|
|
|
接続したデータベースを自動的に GraphQL API として提供
|
2021-07-20 14:58:37 +09:00
|
|
|
|
|
|
|
![bg right:45% h:600px](https://hasura.io/static/schema-query-3e7ddf6d398359f910d334df09391638.svg)
|
|
|
|
|
|
|
|
<!-- _footer: 画像の出典: Hasura 公式サイト - https://hasura.io -->
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## GraphQL
|
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
https://graphql.org
|
2021-07-20 14:58:37 +09:00
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
API の問い合わせ言語
|
2021-07-20 14:58:37 +09:00
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
特徴
|
2021-07-20 16:37:46 +09:00
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
- 単一リクエスト
|
|
|
|
- 型システム
|
|
|
|
- 便利なツール
|
2021-07-20 14:58:37 +09:00
|
|
|
|
2022-03-07 15:51:26 +09:00
|
|
|
![bg fit right:60% State of JS 2020](https://stateofx-images.netlify.app/captures/js2020/en-US/datalayer_experience_ranking.png)
|
|
|
|
|
|
|
|
<!-- _footer: 図の出典: "State of JS 2020" データ層 https://2020.stateofjs.com/ja-JP/technologies/datalayer/ -->
|
2021-07-20 14:58:37 +09:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2021-07-21 09:10:18 +09:00
|
|
|
## GraphQL と Hasura
|
2021-07-20 14:58:37 +09:00
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
GraphQL は多くのプログラミング言語で使うことができる
|
2021-07-20 14:58:37 +09:00
|
|
|
しかし、バックエンドでは SQL 等のデータソースのクエリーに変換する必要がある
|
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
Hasura を使うことで GraphQL と SQL を自動的に相互変換できる
|
2021-07-20 14:58:37 +09:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-03-07 15:51:26 +09:00
|
|
|
## Hasura の機能
|
2021-07-20 14:58:37 +09:00
|
|
|
|
|
|
|
[RESTified GraphQL Endpoints (2.0 の新機能)](https://hasura.io/docs/latest/graphql/core/api-reference/restified.html)
|
|
|
|
GraphQL の REST 化のサポート
|
|
|
|
|
2022-03-07 15:51:26 +09:00
|
|
|
Query/Mutation を REST API エンドポイントに対応可能
|
2021-07-20 14:58:37 +09:00
|
|
|
GraphQL API と同様のレスポンスを得る
|
|
|
|
|
2022-03-07 15:51:26 +09:00
|
|
|
![bg right:30% w:200px](https://cdnjs.cloudflare.com/ajax/libs/simple-icons/5.7.0/graphql.svg)
|
|
|
|
|
2021-07-20 14:58:37 +09:00
|
|
|
---
|
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
# ハンズオン
|
2021-07-20 14:58:37 +09:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-03-07 15:51:26 +09:00
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
## Hasuraで作るREST API
|
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
|
|
|
|
<iframe
|
|
|
|
src="https://codesandbox.io/embed/github/kou029w/hasura-rest-hands-on/tree/main/frontend?codemirror=1&hidenavigation=1&view=preview&module=/src/App.vue"
|
|
|
|
style="
|
|
|
|
width: 100%;
|
|
|
|
height: 500px;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
"
|
|
|
|
title="vue3-hasura-rest"
|
|
|
|
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
|
|
|
|
></iframe>
|
2021-07-20 14:58:37 +09:00
|
|
|
|
2022-02-25 17:24:19 +09:00
|
|
|
https://kou029w.github.io/hasura-rest-hands-on/
|
2021-07-20 14:58:37 +09:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## ![h:0.8em][github.svg] フィードバック
|
|
|
|
|
|
|
|
[このスライドを編集する](https://github.com/kou029w/intro-to-hasura/edit/main/README.md) / [問題を報告する](https://github.com/kou029w/intro-to-hasura/issues/new)
|
|
|
|
|
|
|
|
[github.svg]: https://cdnjs.cloudflare.com/ajax/libs/simple-icons/5.7.0/github.svg
|