Dukuo
12/04/2017, 7:35 PMfrank
12/04/2017, 7:52 PMfrank
12/04/2017, 8:05 PMFile
type in my schema. I defined one based on this issue (https://github.com/graphcool/framework/issues/1295) and re-tried the POST and now it works. The documentation for the File Management API (https://www.graph.cool/docs/reference/graphql-api/file-management-eer4wiang0/#uploading-workflow) is perhaps a bit misleading, as it says: “Each project contains a file type by default that provides the possibility to add and modify files.” That suggests to me that the File type gets automatically created behind the scenes. Was it supposed to have been?Andrew Schreiber
12/04/2017, 8:38 PMuser
12/04/2017, 8:40 PMhttps://prisma.slack.com/files/U7PGDP70V/F89GZ9MBN/image.png▾
mutation
and schema
? 🙂Andrew Schreiber
12/04/2017, 8:41 PMmutation ($id: ID!, $email: String!, $password: String!) {
updateUser(id: $id, email: $email, password: $password) {
id
}
}
Andrew Schreiber
12/04/2017, 8:42 PMuser
12/04/2017, 8:48 PMhttps://prisma.slack.com/files/U7PGDP70V/F88RUDGQ0/image.png▾
user
12/04/2017, 8:52 PMhttps://prisma.slack.com/files/U7PGDP70V/F88RUDGQ0/image.png▾
lancej
12/04/2017, 9:03 PMUpdateUser
, email is not on there. I read that it is not possible to update the email and password of a user, though that was a while agoAndrew Schreiber
12/04/2017, 9:11 PMAndrew Schreiber
12/04/2017, 9:12 PMmwickett
12/04/2017, 9:13 PMAndrew Schreiber
12/04/2017, 9:16 PMtomhut
12/04/2017, 9:19 PMamann
12/04/2017, 9:22 PMdr-manhattan
12/04/2017, 9:26 PMZach Hobbs
12/04/2017, 9:36 PMdr-manhattan
12/04/2017, 9:39 PMstton
12/05/2017, 2:53 AMIshan
12/05/2017, 4:17 AMflorian
12/05/2017, 5:00 AMrene
12/05/2017, 7:30 AMdohomi
12/05/2017, 8:37 AMdohomi
12/05/2017, 8:38 AMPhu Phan
12/05/2017, 9:34 AMPhu Phan
12/05/2017, 9:35 AMnilan
12/05/2017, 9:35 AMPhu Phan
12/05/2017, 9:49 AMWbert
12/05/2017, 10:25 AMauth/email-password
. Right now I can create users, but they can’t log in in the app. I am querying the database and the passwords are not encrypted. I want to modify the resolver in order to fix that. but I have no idea about how to achieve that. right now I am changing the fiel signup.ts but I dont see any changes in the server