Generate static HTML documentation for GraphQL APIs.
[GraphiQL] is great. So are tools like [Altair] and [Insomnia].
docql
comes in when you want documentation for GraphQL APIs that lives in a
shared place. Having HTML documentation allows teams to link to specific
objects and fields to enhance conversation, reference the docs when away from
the computer, and generally have a place to see the entire GraphQL schema at a
glance.
There are two ways to use docql
.
The easiest way to get started is to run docql
off of the npm registry.
npx docql -e $API -o ./doc
If native binaries are more your style, each release comes with native binaries on the GitHub release page.
docql -e $API -o ./doc
Or you can install your own from [crates.io] using [Rust]'s cargo
.
cargo install docql
docql -e $API -o ./doc
```
USAGE:
docql [OPTIONS] --endpoint
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-e, --endpoint -x
"Authorization: Bearer abcdef"
-n, --name