-
Hi, thankyou for this amazing project. It's been brilliant to use so far. Is it possible to change the KitQLClient URL for certain mutations/queries? I have a case where I am needing to access 'authenticated' operations which reside in a different graphql schema. Thankyou again. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Thank you for your feedback. I wonder how common is this use case? 🤔 There is a reason to not merge these 2 endpoints? Something like 👇 graph TD;
subgraph 2 endpoints
AA[GraphQL A]-->AC[Your client app];
AB[GraphQL B]-->AC;
end
subgraph one mesh - merging 2 endpoints
BA[GraphQL A]-->MESH[GraphQL Merged];
BB[GraphQL B]-->MESH[GraphQL Merged];
MESH-->BC[Your client app];
end
Let me know, I'm curious 👍 |
Beta Was this translation helpful? Give feedback.
Thank you for your feedback.
Today this is not possible to have 2 clients (2 endpoints) at the same time.
I wonder how common is this use case? 🤔
You can do a regular
fetch
to login there? or do you have 50% queries on one endpoint and 50% on the other endpoint?There is a reason to not merge these 2 endpoints? Something like 👇
Let me know, I'm curious 👍