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 Character { | |
id: ID! | |
name: String! | |
appearsIn: [Episode!]! | |
} | |
enum Episode { | |
NEWHOPE | |
EMPIRE | |
JEDI |
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 Profile { | |
id: ID! | |
name: String! | |
} | |
type User implements Profile { | |
id: ID! | |
name: String! | |
age: Int! | |
} |
OlderNewer