-
I have a graphql-mesh as a gateway and as a mocks provider during development. The problem I see is the start time of the graphql-mesh server, which is about 30 seconds. I've had the same setup couple of years back with the Apollo server, and now I'm trying to use mesh in a similar fashion. Is there a way to make this workflow viable? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
Hi @nemonemi , graphql-mesh goes through the data sources when you start the server. There are a couple of ways to improve on this. Another way could be to change the merge process. If you do have conflicts in your sources, you might still want to take advantage of merger-bare by solving them on your own, before the merging process. Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
I've decided to use the I'm consuming the data on the client with gqless (gqty) and there I've extended the implementation that in case of the test environment it returns the SDK data. |
Beta Was this translation helpful? Give feedback.
I've decided to use the
getMeshSDK
, and with that, it works.I'm consuming the data on the client with gqless (gqty) and there I've extended the implementation that in case of the test environment it returns the SDK data.