mirror of
https://github.com/Ratstail91/sineQL.git
synced 2025-11-29 02:34:28 +11:00
19 lines
235 B
JavaScript
19 lines
235 B
JavaScript
module.exports = `
|
|
type Pokemon {
|
|
String name
|
|
Integer height
|
|
Integer weight
|
|
Stats stats
|
|
Pokemon forms
|
|
}
|
|
|
|
type Stats {
|
|
Integer hp
|
|
Integer attack
|
|
Integer defense
|
|
Integer specialAttack
|
|
Integer specialDefense
|
|
Integer speed
|
|
}
|
|
`;
|