How to connect nextjs app to graphql studio

Viewed 25

I'm trying to figure out how to open the apollo studio for my next js app.

When I run the local host, I get a message that says:

Server started at http://localhost:5555/graphql

When I click that link, I get a page that says:

GET query missing.

I'm trying to find a way to get to the apollo studio explorer.

1 Answers

For others looking (or maybe for myself the next time I forget), the address: http://localhost:5555/graphql gets inserted in the sandbox address bar, that you find at the url: https://studio.apollographql.com/sandbox/explorer. It won't work if you put the local host address in the url bar

Related