graphql-docs
graphql-docs copied to clipboard
GraphQL documentation explorer
Got this message after did an html generation file : `graphql-docs-gen http://localhost:56911/v1/graphql documentation.html` Error coming from this block ``` var Schema = exports.Schema = function() { function Schema(introspectionResult) { var...
Any reason as to why input types are not documented ?
Your comment says you can do it but no example, does it want a json file or an SD file or what? I can't get it to work
```html Docs window.onload = function() { function fetcher(query) { return fetch('http://localhost:3000/graphql', { method: 'POST', headers: { Accept: 'application/json', 'Content-Type': 'application/json', }, body: JSON.stringify({ query: query, }), }).then(function(r) { return r.json();...
I already installed graphql-docs (globally) and now when I run below command `graphql-docs-gen MY-GRAPHQL-ENDPOINT doc.html ` It returns with Did not get > HTTP 200 back from the endpoint error...
Introspection query should return schema as intended now.
I would like to use the static document generation but I have to set a http header (authorization). Is that possible?
I have a UnionType in my schema, and when I view the docs via the React App I see: `Error: Unsupported type ref kind: UNION` Generating via CLI also fails...
Hi there, It would be great if some of the layout variables (particularly this 800px fixed width container) could be provided as a prop to the component! Cheers, Jun
Hi there, Thanks for the nice module. I've promoted it on [SO](http://stackoverflow.com/a/40345628/3237351) Any thoughts on how to make it easier to use it in an isomorphic app context? On the...