Skip to content

Instantly share code, notes, and snippets.

@nicolasdao
Created August 7, 2017 12:15
Show Gist options
  • Save nicolasdao/fb437c6ac02132b61242aa45a42f2b04 to your computer and use it in GitHub Desktop.
Save nicolasdao/fb437c6ac02132b61242aa45a42f2b04 to your computer and use it in GitHub Desktop.
const schema = `
type Teacher {
id: ID!
creationDate: String
firstname: String!
middlename: String
lastname: String!
age: Int!
gender: String
title: String!
}
type Student {
id: ID!
creationDate: String
firstname: String!
middlename: String
lastname: String!
age: Int!
gender: String
nickname: String!
}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment