Hello again … I am trying to leverage existing fun...
# orm-help
r
Hello again … I am trying to leverage existing functionality in prisma as much as possible in my wrapper api. Does anyone know how I can include specific mutations within my mutations type? e.g.
Copy code
# 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!]!
}