-
I'm curious if I can use envelop to merge two schemas. My use case is - I have NextJS and Apollo Server and I have it setup with passing a schema. This works locally. Now, I want to add in graphql-mesh. It has it's getMesh call that returns the schema from the mesh file. I want to combine my local schema with the getMesh schema and pass to my apollo server. Is this possible ? |
Beta Was this translation helpful? Give feedback.
Answered by
saihaj
Oct 20, 2021
Replies: 1 comment
-
You can use stitch those 2 schemas using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dotansimha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use stitch those 2 schemas using
@graphql-tools/schema
and then pass that schema to your server.