ryannealmes
06/14/2018, 8:16 PM# import User from "./generated/prisma.graphql"
# import Team from "./generated/prisma.graphql"
type Mutation {
login(email: String!, password: String!): String
signup(email: String!, password: String!, name: String!, username: String!): String
updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User #not sure how to add this ...
}
type Query {
me: User
users: [User!]!
teams: [Team!]!
}