@nilan Is there a way to remove unwanted resolvers (or define them completely myself), without leaving the graph.cool ecosystem (graph.cool, prisma)?
What I basically want, is to remove all but one of the default query resolvers for security reasons and hock up a database to store the data and make it accessible to other systems.
Thanks in advance! 👍
n
nilan
04/07/2018, 11:20 PM
That use case is one of the core components that fed into the Prisma architecture.
nilan
04/07/2018, 11:22 PM
Yes, you can do so by setting up a GraphQL server that uses a GraphQL binding to your Prisma API.
p
pasa
04/08/2018, 9:06 AM
@nilan Thank you for your quick response! Could you recommend me an explicit example, where this was implemented and a at least partially complete set up with Prisma is shown?
pasa
04/08/2018, 9:09 AM
If I understand you correctly, my set up would then consist of at least 4 services. Frontend (main) REACT app, self hosted MySQL DB, self hosted Graphql server and the Prisma cloud.