Ayon Paul

Results 3 comments of Ayon Paul

Did you ever figure it out? I think I currently have the same issue-- the cookie shows up in the network request but not under storage in the application tab.

I believe I completed all necessary steps for configuring cors in the backend, but I still don't know how to set credentials to true for this specific library. I tried...

### In server file: const app = express(); const corsOptions = { origin: "http://localhost:3000", credentials: true }; expressMiddleware(app, corsOptions); const server = new ApolloServer({ typeDefs: typeDefs, resolvers: resolvers, context: ({...