Ben Liger
01/11/2021, 6:51 PMprisma-binding
in my backend along with graphql-yoga
and would like to migrate to either prisma-client
or nexus
- which ever one takes the least time to upgrade to! Which of the two would people recommend?Jonathan
01/11/2021, 8:07 PMnexus
recently "retired" their graphql framework, and instead put all their focus on their schema
instead. So one recommended stack you might see here is:
⢠apollo server
for the general graphql server (really is almost identical to graphql-yoga
)
⢠nexus/schema
for the graphql schema generation (define resolver and graphql data-model in one). You will want to use the prisma plugin to get close functionality to prisma-binding
⢠prisma
for the database access (to be used in your resolvers as defined in nexus/schema
Ben Liger
01/11/2021, 8:55 PMRyan
01/12/2021, 7:14 AMstephen.pearl
01/12/2021, 3:32 PMSamrith Shankar
01/12/2021, 3:54 PMBen Liger
01/12/2021, 10:55 PM404
untill i opened it in a new tab btwBen Liger
01/13/2021, 1:19 AM