Skip to content

Instantly share code, notes, and snippets.

@Bensigo
Created October 3, 2017 20:02
Show Gist options
  • Save Bensigo/b38edf579307bb30ab4c4d8fd69b194c to your computer and use it in GitHub Desktop.
Save Bensigo/b38edf579307bb30ab4c4d8fd69b194c to your computer and use it in GitHub Desktop.
module.exports = `
type User {
id: ID!
email: String!
username: String!
password: String!
createAt: String!
}
type Query {
hello : String!
}
type Mutation {
createUser(email: String!, username: String!, password: String!): User!
login(email: String!, password: String!): String!
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment