is building a passthrough graphQL layer on top of ...
# orm-help
h
is building a passthrough graphQL layer on top of an existing API (using resolvers, etc) something I should do with Prisma or fall back to GraphCool?
t
Yoga is probably the best fit for something like this https://github.com/prisma/graphql-yoga
h
Thanks! What do you think of Apollo server?
t
I honestly don’t have much experience with it personally, but it would probably also be a great fit for this use case
If you are looking at adding a database layer in the future with prisma, maybe go for yoga, if not it’s probably quite even
c
yoga is built on top of apollo-server. it combines several existing graphql toolkits into one package
t
💯
c
Highly recommend that combo. We use yoga (gateway) -> yoga (microservices x5) -> prisma (each micro has its own instance)
h
Ahhh that’s awesome! So we can add Prisma later on then when MSSQL support is added.
Alright, I’ll go with that.