<@U0RQY0KK5> Is there a way to remove unwanted res...
# prisma-whats-new
p
@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
That use case is one of the core components that fed into the Prisma architecture.
Yes, you can do so by setting up a GraphQL server that uses a GraphQL binding to your Prisma API.
p
@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?
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.
yup