Skip to content

Instantly share code, notes, and snippets.

@dabit3
Last active October 20, 2016 07:04
Show Gist options
  • Save dabit3/df625f0e3524cc5415f7a4aefaf49e9a to your computer and use it in GitHub Desktop.
Save dabit3/df625f0e3524cc5415f7a4aefaf49e9a to your computer and use it in GitHub Desktop.
Apollo Tutorial - Schema
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