<@U44E1B8UF> I am using legacy. <@U5Q1YFDDF> Notic...
# prisma-whats-new
a
@matic I am using legacy. @lancej Noticed the same as well, though hoped there might be a workaround
m
@Andrew Schreiber gosh, thatโ€™s a bummer, I thought there might be an answer in playground. ๐Ÿ˜„ I can only recommend switching to
service
project. I suppose this should be a minor difficulty, as everything is well explained in the docs, but you can always tag me and I will help you ๐Ÿ™‚
n
@Andrew Schreiber looks like you have the legacy email/password authentication provider enabled
it removes the email and password fields from create and update user mutations. you need to disable it to modify that data. please try so in a project copy first ๐Ÿ™‚
a
That worked for editing the email and password fields! However after disabling the integration, I can no longer signin using email and password. Getting an error
GraphQL error: Cannot query field 'signinUser' on type 'Mutation'. (line 2, column 3)
with
Copy code
mutation($email: String!, $password: String!) {
    signinUser(email: { email: $email, password: $password }) {
      token
    }
  }
n
๐Ÿ™‚ that's because you disabled the integration. you can have a look at https://github.com/graphcool/templates for different templates implementing authentication