-
Beta Was this translation helpful? Give feedback.
Answered by
manasag
Dec 27, 2023
Replies: 1 comment 1 reply
-
https://localhost:8080/v1/graphql is a POST endpoint which serves the GraphQL API. Since you are accessing using GET (by trying to access the endpoint directly on the browser), you are encountering the error. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
paymog
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://localhost:8080/v1/graphql is a POST endpoint which serves the GraphQL API. Since you are accessing using GET (by trying to access the endpoint directly on the browser), you are encountering the error.
The interface you are referring to (it's a modified GraphiQL IDE web module) is hosted at https://localhost:8080, and is embedded in the Console. Since GraphiQL is open sourced, you can try to run it yourself separately, and point to https://localhost:8080/v1/graphql for your purpose.