Created
May 7, 2019 19:31
-
-
Save valikos/719a7dca18ba5c7a0fb5d12c2933d1d3 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 Node { | |
id: ID! | |
} | |
interface Person { | |
firstName: String! | |
lastName: String | |
} | |
type Character implements Node & Person { | |
id: ID! | |
firstName: String! | |
lastName: String | |
} | |
type Land implements Node { | |
id: ID! | |
name: String! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment