mirror of
https://github.com/kou029w/intro-to-graphql.git
synced 2025-01-18 16:08:03 +00:00
fix
This commit is contained in:
parent
eedc9701cb
commit
78280fd8c0
1 changed files with 4 additions and 13 deletions
17
README.md
17
README.md
|
@ -137,21 +137,14 @@ type Pokemon {
|
||||||
"""このオブジェクトのID"""
|
"""このオブジェクトのID"""
|
||||||
id: ID!
|
id: ID!
|
||||||
|
|
||||||
"""このポケモンの全国図鑑No."""
|
|
||||||
number: String
|
|
||||||
|
|
||||||
"""このポケモンの名前"""
|
"""このポケモンの名前"""
|
||||||
name: String
|
name: String
|
||||||
|
|
||||||
"""このポケモンの重さの最大と最小"""
|
# ...
|
||||||
weight: PokemonDimension
|
}
|
||||||
|
|
||||||
"""このポケモンの高さの最大と最小"""
|
|
||||||
height: PokemonDimension
|
|
||||||
|
|
||||||
"""このポケモンの分類"""
|
|
||||||
classification: String
|
|
||||||
|
|
||||||
|
"""ポケモンの寸法を表します"""
|
||||||
|
type PokemonDimension {
|
||||||
# ...
|
# ...
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -199,8 +192,6 @@ type Pokemon {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
オブジェクトに含まれるフィールド
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
#### 特定のプログラミング言語に依存しない
|
#### 特定のプログラミング言語に依存しない
|
||||||
|
|
Loading…
Add table
Reference in a new issue