Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created October 8, 2020 10:49
Show Gist options
  • Save velotiotech/0524998dc516ba2c885e8f0cfd72dd01 to your computer and use it in GitHub Desktop.
Save velotiotech/0524998dc516ba2c885e8f0cfd72dd01 to your computer and use it in GitHub Desktop.
type Query {
User(id: String): User
}
type Mutation {
createUser(
email: String,
firstName: String,
lastName: String,
password: String,
): User
}
type User {
id: String!
email: String!
firstName: String!
lastName: String!
password: String!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment