Created
February 18, 2019 05:44
-
-
Save jhnferraris/a42c89931dbc2e6909510a62faf2aad1 to your computer and use it in GitHub Desktop.
Sample gql 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
type Planet { | |
name: String! | |
classification: String! | |
population: Int | |
} | |
type System { | |
name: String! | |
planets: [Planet!] | |
} | |
type Galaxy { | |
name: String! | |
systems: [System!] | |
} | |
type Query { | |
galaxy(id: ID): Galaxy | |
andromeda: Galaxy | |
hello: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment