1

Here's a reference setup of AWS Lambda and Serverless and GraphQL that i'm following:

https://github.com/serverless/serverless-graphql-apollo

I'm trying with yarn run start-server-lambda:offline to start the project offline, it does start without any problems, but upon navigating to /graphiql, I get this:

enter image description here

Daniel Birowsky Popeski
  • 8,752
  • 12
  • 60
  • 125
  • Can you include your `serverless.yml` and possibly the part of your handler where you set `graphql` endpoint that `graphiql` uses? – Noel Llevares Sep 28 '17 at 16:24

1 Answers1

1

There's a configuration problem somewhere.

Basically, it's sending a request to /production/graphql when it should have been sending it to /graphql.

Noel Llevares
  • 15,018
  • 3
  • 57
  • 81