Last active
November 19, 2018 20:56
-
-
Save tibotiber/32ac40d4b55f7146e4b053a13a89cdb5 to your computer and use it in GitHub Desktop.
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
interface Character { | |
id: ID! | |
name: String! | |
friends: [Character] | |
appearsIn: [Episode]! | |
} | |
type Human implements Character { | |
id: ID! | |
name: String! | |
friends: [Character] | |
appearsIn: [Episode]! | |
starships: [Starship] | |
totalCredits: Int | |
} | |
type Droid implements Character { | |
id: ID! | |
name: String! | |
friends: [Character] | |
appearsIn: [Episode]! | |
primaryFunction: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment