ericsonluciano
02/27/2018, 12:41 PMhuv1k
02/27/2018, 12:42 PMexport const userMutation = {
updateUserImage(parent, { id, imageId }, ctx: Context, info) {
return ctx.db.mutation.updateUser({
where: {
id
},
data: {
image: {
connect: {
id: imageId
}
}
}
}, info)
}
}