I have a use case where I have apollo-server-express
running with a React based apollo-client
. I have an external graphql-datasource
for some queries. Currently, I've configured apollo-datasource-graphql
to be used as a data source for my apollo-server-express
. However, this requires duplication of work on the resolver in Apollo as well as the resolver on my external graphql
system.
Is there a way for me to pass queries made in the client through the Apollo Server and to the external graphql
data source?