mirror of
https://github.com/Ratstail91/sineQL.git
synced 2025-11-29 02:34:28 +11:00
pokemon example is working
This commit is contained in:
@@ -1,14 +1,18 @@
|
||||
module.exports = `
|
||||
scalar Date
|
||||
|
||||
type Book {
|
||||
String title
|
||||
Author author
|
||||
Date published
|
||||
type Pokemon {
|
||||
String name
|
||||
Integer height
|
||||
Integer weight
|
||||
Stats stats
|
||||
Pokemon forms
|
||||
}
|
||||
|
||||
type Author {
|
||||
String name
|
||||
Book books
|
||||
type Stats {
|
||||
Integer hp
|
||||
Integer attack
|
||||
Integer defense
|
||||
Integer specialAttack
|
||||
Integer specialDefense
|
||||
Integer speed
|
||||
}
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user