Hi there! I'm using the `forwardTo` function to b...
# prisma1-community
t
Hi there! I'm using the
forwardTo
function to bypass graphql server with prisma and I was thinking if its possible to use
forwardTo
with queries/mutations having different custom names rather than using the names which are already present in prisma.graphql (generated).
r
Hey @Tulsi Prasad 👋 That is not possible with
forwardTo
, you would need to implement the resolver manually for that as a workaround.
t
Okay that's cool, just wanted to know. Thanks..