2

I'm using graphene-python for my flask based graphQL server. and I want to use docs generator from code like swagger.

I've searched it from google, but got nothing. Is there any GraphQL schema docs generator from code for python?

1 Answers1

2

You could use graphiql - graphical interactive in-browser GraphQL IDE that is comes handy to explore API.

donnyyy
  • 452
  • 3
  • 11
  • 1
    i already know that. but i want to find much better docs generator. –  Apr 21 '18 at 09:23
  • apparently there is none? Can't find any other option out there – Rafael Santos Oct 25 '21 at 11:07
  • Check this answer: https://stackoverflow.com/a/63843954/9671997 TLDR; better use built-in docs as they're inreractive, but there is some tools like https://github.com/2fd/graphdoc#readme – donnyyy Oct 25 '21 at 18:03