You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm interested in deploying graphiql-workspace so that it could be used to call multiple authenticated graphql endpoints that run on subdomains of my company's TLD. Currently, the implementation of fallbackFetcher precludes this because it calls fetch with credentials: 'same-origin' instead of credentials: 'include':
I'm interested in deploying graphiql-workspace so that it could be used to call multiple authenticated graphql endpoints that run on subdomains of my company's TLD. Currently, the implementation of
fallbackFetcher
precludes this because it callsfetch
withcredentials: 'same-origin'
instead ofcredentials: 'include'
:graphiql-workspace/src/GraphiQLTab.jsx
Line 535 in 967c3d5
Would there be any objection to changing
same-origin
toinclude
? (FWIW, that's what the reference example in the graphiql repo does.)Alternatively, if the use of
same-origin
is deliberate, would it be possible to make it a configuration option?Thanks!
The text was updated successfully, but these errors were encountered: