From 3d6e1e9576064050153aeeb2183ec0f069f1365f Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Fri, 28 May 2021 01:37:08 +0900 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bc55188..df62697 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ https://graphql.org ### GraphQLとはAPIのクエリ言語 -サーバーへの問い合わせ (Query) +サーバーへの問い合わせ (GraphQL Query) ```graphql query { pokemon(name: "Pikachu") { @@ -28,7 +28,7 @@ query { } ``` -サーバーからの応答 (Response, JSON形式) +サーバーからの応答 (JSON) ```json { "data": { @@ -67,10 +67,10 @@ https://graphql-pokemon2.vercel.app ## 主な仕様 -- サーバー: [使用可能なデータの構造とその操作を宣言するための言語 (スキーマ言語)](https://graphql.org/learn/introspection/) -- クライアント: [サーバーにデータを要求するための言語 (クエリ言語)](https://graphql.org/learn/queries/) -- サーバー: [クエリの実行方法 (Resolvers)](https://graphql.org/learn/execution/) -- クライアント: [受け取るデータ形式 (JSON)](https://graphql.org/learn/serving-over-http/#response) +- [使用可能なデータの構造とその操作を宣言するための言語 (スキーマ言語)](https://graphql.org/learn/introspection/) +- [サーバーにデータを要求するための言語 (クエリ言語)](https://graphql.org/learn/queries/) +- [クエリの実行方法 (Resolvers)](https://graphql.org/learn/execution/) +- [クライアントの受け取るデータ形式 (JSON)](https://graphql.org/learn/serving-over-http/#response) ---