-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
Yes, GraphiQL Explorer should work against any valid GraphQL API, I don't think it actually cares about the transport at all - it's schema/editor only. |
Beta Was this translation helpful? Give feedback.
-
Ok thanks, because I do a quick test in localhost with http://localhost:3000/graphql it give me an error "message": "Missing query" |
Beta Was this translation helpful? Give feedback.
-
I think the question is more whether the library ships with GraphiQL integrated. @ShueiYang that it does not and it never will, graphql-http is a reference implementation of the GraphQL over HTTP specification and as such follows the specification strictly without any additional features (see disclaimer in readme). You can of course intercept the incoming requests and render GraphiQL whenever you wish. |
Beta Was this translation helpful? Give feedback.
-
Regarding graphiql's disclaimer, is there an alternative? |
Beta Was this translation helpful? Give feedback.
I think the question is more whether the library ships with GraphiQL integrated. @ShueiYang that it does not and it never will, graphql-http is a reference implementation of the GraphQL over HTTP specification and as such follows the specification strictly without any additional features (see disclaimer in readme).
You can of course intercept the incoming requests and render GraphiQL whenever you wish.