
Description
I'm currently trying to query my /graphql
API through IIS that uses Basic authentication.
I am receiving this error:
Fetch API cannot load http://localhost/wfgen/graphql. The 'Access-Control-Allow-Origin' header contains multiple values '*, http://localhost:3000', but only one is allowed. Origin 'http://localhost:3000' is therefore not allowed access. Have the server send the header with a valid value, or, if an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
I am using cors in my queries and therefore a preflight request is sent every time I make a query. In my IIS server, I entered these lines of code:
<customHeaders>
<add name="Access-Control-Allow-Origin" value="http://localhost:3000" />
<add name="Access-Control-Allow-Methods" value="GET,PUT,POST,DELETE,OPTIONS" />
<add name="Access-Control-Allow-Headers" value="Content-Type, Authorization" />
</customHeaders>
If I try to query my server using an html+ajax example, it returns a message with status 200 OK and I can console.log()
my response.
If I do the same thing but using the Apollo-client, my query returns a message with status 200 OK but I also receive APOLLO_QUERY_ERROR
and my console prints the error I wrote above.
I'm guessing that the error is on Apollo's side since I receive a 200 OK status but also an APOLLO_QUERY_ERROR.
Any idea how to fix this error?
Thank you