Skip to content

Instantly share code, notes, and snippets.

type RootMutation {
registerUser(input: RegisterUserInput!): RegisteredUserResponse
}
type RegisterUserInput {
name: String!
email: Email! // maybe have an Email type defined?
password: String!
}