Hi there! :wave: Dumb Apollo/GraphQL question - if...
# prisma-whats-new
a
Hi there! 👋 Dumb Apollo/GraphQL question - if you’re setting up a GraphQL server as well as the client to leverage it, should you be defining your types, resolvers, etc within the server’s codebase or as part of your client?
j
Your resolvers and type should be on the server. The client should take your queries, mutation or subscription
Check out the prisma example
a
Awesome, thank you.
j
You welcome