From e73093234d2515ac249d5179b7fa5f594c3e067a Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Tue, 28 Nov 2023 21:29:38 +0900 Subject: [PATCH] fix --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3e70167..d0bd3ce 100644 --- a/README.md +++ b/README.md @@ -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 の問い合わせ言語 - 特徴 - - 単一リクエスト - - 型システム - - 便利なツール + - 単一リクエスト … クライアントの無駄なやり取りを減らせる + - 型システム … プラットフォームを問わない + - 便利なツール … 設計変更しやすい ---