I would like to test my understanding: If I use th...
# prisma-whats-new
p
I would like to test my understanding: If I use the default e-mail template then I have 3 resolvers (signup, authenticat, loggedInUser) then when I write my mutations I have to use these names and paramters to get it to work. What I mean by that in apolllo-angular terms
Copy code
export const CREATE_USER_MUTATION = gpl`
  mutation CreateUserMutation($email: String!, $password: String!, $name: String!) {
    signupUser(
      email: $email,
      password: $password
      name: $name,
    ) {
      id
    }

    authenticateUser(
      email: $email,
      password: $password
    ) {
     id
     token
    }
  }
`;
(I was following the howtographql tutorial with angular but it did not work, now it does and I would like to confirm that my understanding is correct)