When trying to make a GraphQL request I get the following error.
I am running an express server on port 3002. I am also running express-graphql on the express server with the "/graphql" endpoint.
I am using the apollo-client from a react app.
I have tried the following in my express code
app.use(cors())
However I am still getting the same error on the client
How do I resolve this CORS issue?