This commit is contained in:
Nebel 2023-11-28 21:29:38 +09:00
parent 5680e9dd90
commit e73093234d
Signed by: nebel
GPG key ID: 79807D08C6EF6460

View file

@ -104,7 +104,7 @@ https://graphql.org/learn/schema/
### 何でないか
- データベースではない
- グラフデータベースではない
- JavaScript ではない
---
@ -275,7 +275,7 @@ $ graphql-codegen
使う
```typescript
```js
import { usePokemonQuery } from "./generated";
export default () => {
@ -303,9 +303,9 @@ https://hasura.io
- GraphQL とは API の問い合わせ言語
- 特徴
- 単一リクエスト
- 型システム
- 便利なツール
- 単一リクエスト … クライアントの無駄なやり取りを減らせる
- 型システム … プラットフォームを問わない
- 便利なツール … 設計変更しやすい
---