Hey, is there a way to set permissions that apply ...
# prisma-whats-new
e
Hey, is there a way to set permissions that apply only during signup? For example, when creating a
User
I want to allow everyone to be able to create a
Profile
, however, I don’t want everyone to create a
Profile
directly, only if its done through the
createUser
query. What is a pattern for dealing with workflow permissions like that?
d
I assume you are talking about Graphcool? In that I would say the answer is Prisma 😉
e
My understanding is that Prisma is not really ready for production just yet..:. 😕
d
how did you come to that understanding? yea it has it's own quicks, but I don't see any blocker for a production use
either way, you cannot achieve what you want with Graphcool, so it's your choice I guess
or you could hide the Graphcool API behind your own application server and then you can control permissions more precisely
e
Got it, thx