Skip to content

sticksnleaves/docker-graphdoc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Supported tags and respective Dockerfile links

How to use this image

Generate documentation from live endpoint

$ docker run sticksnleaves/graphdoc graphdoc -e http://localhost:8080/graphql -o ./doc/schema

Generate documentation from IDL file

$ docker run sticksnleaves/graphdoc graphdoc -s ./schema.graphql -o ./doc/schema

Generate documentation from for the "modularized schema" of graphql-tools

$ docker run sticksnleaves/graphdoc graphdoc -s ./schema.js -o ./doc/schema

Generate documentation from json file

$ docker run sticksnleaves/graphdoc graphdoc -s ./schema.json -o ./doc/schema

For more information on using graphdoc please read the official documentation.