Martí Crespí
03/06/2019, 7:21 AMCCBCodeMonkey
03/06/2019, 7:40 AMCCBCodeMonkey
03/06/2019, 7:40 AMCCBCodeMonkey
03/06/2019, 7:41 AMCCBCodeMonkey
03/06/2019, 7:41 AMJorge
03/06/2019, 7:46 AMexport const Mutation = prismaObjectType({
name: 'Mutation',
definition(t) {
t.prismaFields(['*']);
t.field('signup', {
type: 'AuthPayload',
args: {
name: stringArg({ nullable: true }),
email: stringArg(),
password: stringArg(),
},
resolve: async (parent, { name, email, password }, ctx) => {
const hashedPassword = await hash(password, 10);
const user = await ctx.prisma.createUser({
name,
email,
password: hashedPassword,
});
return {
token: sign({ userId: user.id }, APP_SECRET),
user,
};
},
});Jorge
03/06/2019, 7:46 AMt.prismaFields(['*']);
with the rest of the specific definitionsMartí Crespí
03/06/2019, 7:47 AMCCBCodeMonkey
03/06/2019, 8:07 AMCCBCodeMonkey
03/06/2019, 8:08 AMMartí Crespí
03/06/2019, 8:08 AMCCBCodeMonkey
03/06/2019, 8:08 AMCCBCodeMonkey
03/06/2019, 8:09 AMMartí Crespí
03/06/2019, 8:12 AMMartí Crespí
03/06/2019, 8:13 AMMartí Crespí
03/06/2019, 8:13 AMCCBCodeMonkey
03/06/2019, 8:13 AMMartí Crespí
03/06/2019, 8:13 AMCCBCodeMonkey
03/06/2019, 8:13 AMCCBCodeMonkey
03/06/2019, 8:13 AMCCBCodeMonkey
03/06/2019, 8:14 AMCCBCodeMonkey
03/06/2019, 8:14 AMCCBCodeMonkey
03/06/2019, 8:14 AMMartí Crespí
03/06/2019, 8:14 AMMartí Crespí
03/06/2019, 8:15 AMCCBCodeMonkey
03/06/2019, 8:15 AMMartí Crespí
03/06/2019, 8:15 AMCCBCodeMonkey
03/06/2019, 8:15 AMCCBCodeMonkey
03/06/2019, 8:15 AMCCBCodeMonkey
03/06/2019, 8:15 AMCCBCodeMonkey
03/06/2019, 8:16 AMMartí Crespí
03/06/2019, 8:16 AMCCBCodeMonkey
03/06/2019, 8:17 AMMartí Crespí
03/06/2019, 8:17 AMCCBCodeMonkey
03/06/2019, 8:17 AMMartí Crespí
03/06/2019, 8:18 AMCCBCodeMonkey
03/06/2019, 8:18 AMCCBCodeMonkey
03/06/2019, 8:18 AMCCBCodeMonkey
03/06/2019, 8:18 AMMartí Crespí
03/06/2019, 8:18 AMCCBCodeMonkey
03/06/2019, 8:18 AMCCBCodeMonkey
03/06/2019, 8:19 AMCCBCodeMonkey
03/06/2019, 8:19 AMMartí Crespí
03/06/2019, 8:21 AMCCBCodeMonkey
03/06/2019, 8:21 AMCCBCodeMonkey
03/06/2019, 8:22 AMCCBCodeMonkey
03/06/2019, 8:22 AMCCBCodeMonkey
03/06/2019, 8:22 AMCCBCodeMonkey
03/06/2019, 8:22 AMCCBCodeMonkey
03/06/2019, 8:22 AMUby
03/06/2019, 9:12 AMgraphql-tools
?
I created this issue/question to see how people do that with nexus: https://github.com/prisma/nexus/issues/70
At which point do you analyse those claims @Martí Crespí?
Did you create another graphql server on which you do that?Martí Crespí
03/06/2019, 9:28 AMUby
03/06/2019, 9:33 AMUby
03/06/2019, 9:33 AMMartí Crespí
03/06/2019, 9:37 AM