Files
sineQL/server/schema.js
2020-09-07 14:31:17 +10:00

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
}
`;