graphql

amar 2019-12-05T18:17:40.121900Z

hi everyone! Does anyone have tool recommendations for generating static API docs off of a graphql schema?

2019-12-05T18:37:23.123900Z

the nodejs graphql package has an introspecitionQuery thing, I have a little nodejs script that sends that to my lacinia server and prints out the schema it gets back (it prints out it out in the standard graphql schema language) and use that as the api docs

2019-12-05T18:38:31.124400Z

it includes things like descriptions and deprecated information

amar 2019-12-05T19:32:56.124500Z

Thanks. I'll try that.