-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathschema.graphql
More file actions
92 lines (69 loc) · 1.84 KB
/
Copy pathschema.graphql
File metadata and controls
92 lines (69 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Represents a Pokémon's attack types
type Attack {
# The name of this Pokémon attack
name: String
# The type of this Pokémon attack
type: String
# The damage of this Pokémon attack
damage: Int
}
# Represents a Pokémon
type Pokemon {
# The ID of an object
id: ID!
# The identifier of this Pokémon
number: String
# The name of this Pokémon
name: String
# The minimum and maximum weight of this Pokémon
weight: PokemonDimension
# The minimum and maximum weight of this Pokémon
height: PokemonDimension
# The classification of this Pokémon
classification: String
# The type(s) of this Pokémon
types: [String]
# The type(s) of Pokémons that this Pokémon is resistant to
resistant: [String]
# The attacks of this Pokémon
attacks: PokemonAttack
# The type(s) of Pokémons that this Pokémon weak to
weaknesses: [String]
fleeRate: Float
# The maximum CP of this Pokémon
maxCP: Int
# The evolutions of this Pokémon
evolutions: [Pokemon]
# The evolution requirements of this Pokémon
evolutionRequirements: PokemonEvolutionRequirement
# The maximum HP of this Pokémon
maxHP: Int
image: String
}
# Represents a Pokémon's attack types
type PokemonAttack {
# The fast attacks of this Pokémon
fast: [Attack]
# The special attacks of this Pokémon
special: [Attack]
}
# Represents a Pokémon's dimensions
type PokemonDimension {
# The minimum value of this dimension
minimum: String
# The maximum value of this dimension
maximum: String
}
# Represents a Pokémon's requirement to evolve
type PokemonEvolutionRequirement {
# The amount of candy to evolve
amount: Int
# The name of the candy to evolve
name: String
}
# Query any Pokémon by number or name
type Query {
query: Query
pokemons(first: Int!): [Pokemon]
pokemon(id: String, name: String): Pokemon
}