Last active
October 20, 2016 07:04
-
-
Save dabit3/df625f0e3524cc5415f7a4aefaf49e9a to your computer and use it in GitHub Desktop.
Apollo Tutorial - 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
const typeDefinitions = ` | |
type President { | |
name: String | |
party: String | |
term: String | |
} | |
type RootQuery { | |
president(name: String, party: String, term: String): President | |
} | |
schema { | |
query: RootQuery | |
} | |
`; | |
module.exports = [typeDefinitions]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment