Tag: cookies
-
GraphQL Apollo Server 4: How to set response headers and cookies
0 I got a basic setup of Apollo Server 4 to be integrated with Azure Functions. I followed this guide: https://www.apollographql.com/docs/apollo-server/migration And for the connection to Azure Functions I’m using the officially supported integration package: https://github.com/apollo-server-integrations/apollo-server-integration-azure-functions#readme I was able to set cookies and response headers with Apollo Server 3, but I can’t get it working…
-
Apollo client send cookie with request
0 I configured my apollo client to send cookies in every request: apollo: { clients: { default: { httpLinkOptions: { credentials: ‘include’, }, httpEndpoint: `${process.env.NUXT_ENV_GRAPH_URL}`, }, }, }, My app is holding following cookies: Now when I perform mutation to graphql I see that none of above cookies is sent instead it creates some new…
-
NestJs GraphQL : Unable To set and Get Cookie
0 I am working on nestJS Graphql Project , and the problem is that when i send the cookie it is not setting on client and if i manually put the cookie it cant read also , but the thing that amazing me is when i login on sever by graphql playground it is setting…