Hello! I am currently implementing Oauth social login
I implemented the access token used to get the client cookie from the server.
After executing the query with useMeQuery, which receives user information created with graphql-code-generator, I thought that the cookie was applied right from Authoraztion and the data would come over.
In the first request, the Authoraztion header was not attached to the request at all, so I ran the request and reloaded the page by refreshing, and then the authoraztion header was attached and the result was OK.
I implemented it by getting the cookie from authLink and putting it in the Authorazation of the Header, but since the first is not attached to the header and the second is attached, I don’t know where there is a problem. Can I get help?