Last active
April 18, 2019 09:50
-
-
Save salwator/05fc9e53548200537c1c0e2cba163762 to your computer and use it in GitHub Desktop.
GoT GraphQL Schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scalar Date | |
type Person { | |
name: String | |
house: House | |
parents: [Person!] | |
isAlive: Boolean | |
} | |
type House { | |
name: String! | |
castle: String! | |
members: [Person!] | |
} | |
type Kingdom { | |
ruler: Person | |
kings: [Person!] | |
} | |
type Query { | |
kingdoms: [Kingdom!]! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment