Update README.md

This commit is contained in:
Nebel 2021-05-28 01:37:08 +09:00 committed by GitHub
parent 865b2bc2a9
commit 3d6e1e9576
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ https://graphql.org
### GraphQLとはAPIのクエリ言語 ### GraphQLとはAPIのクエリ言語
サーバーへの問い合わせ (Query) サーバーへの問い合わせ (GraphQL Query)
```graphql ```graphql
query { query {
pokemon(name: "Pikachu") { pokemon(name: "Pikachu") {
@ -28,7 +28,7 @@ query {
} }
``` ```
サーバーからの応答 (Response, JSON形式) サーバーからの応答 (JSON)
```json ```json
{ {
"data": { "data": {
@ -67,10 +67,10 @@ https://graphql-pokemon2.vercel.app
## 主な仕様 ## 主な仕様
- サーバー: [使用可能なデータの構造とその操作を宣言するための言語 (スキーマ言語)](https://graphql.org/learn/introspection/) - [使用可能なデータの構造とその操作を宣言するための言語 (スキーマ言語)](https://graphql.org/learn/introspection/)
- クライアント: [サーバーにデータを要求するための言語 (クエリ言語)](https://graphql.org/learn/queries/) - [サーバーにデータを要求するための言語 (クエリ言語)](https://graphql.org/learn/queries/)
- サーバー: [クエリの実行方法 (Resolvers)](https://graphql.org/learn/execution/) - [クエリの実行方法 (Resolvers)](https://graphql.org/learn/execution/)
- クライアント: [受け取るデータ形式 (JSON)](https://graphql.org/learn/serving-over-http/#response) - [クライアントの受け取るデータ形式 (JSON)](https://graphql.org/learn/serving-over-http/#response)
--- ---