Generate HTML docs for your GraphQL API
Project description
Graphdoc - Generate docs for your GraphQL API
Graphdoc uses your GraphQL schema to generate an HTML page documenting your API.
It works with Graphene and Ariadne and any other framework generating GraphQLSchema
instances from the graphql-core package.
You can see an example of autogenerated docs using the SWAPI schema in this page
Installation
Install using pip:
pip install graphdoc
Usage
Use graphdoc.to_doc to create HTML documentation
from a GraphQLSchema instance or a string with your schema in SDL.
Use graphdoc.to_md to create Markdown documentation.
Examples
Django and Graphene
# view.py
from django.http import HttpResponse
from graphene_django.views import GraphQLView
import graphdoc
def graphql_docs(request):
# For graphene>=3 use schema.graphql_schema
# html = graphdoc.to_doc(GraphQLView().schema.graphql_schema)
html = graphdoc.to_doc(GraphQLView().schema)
return HttpResponse(html, content_type='text/html')
# urls.py
from graphene_django.views import GraphQLView
from .views import graphql_docs
urlpatterns = [
path('graphql', GraphQLView.as_view(), name='graphql_endpoint'),
path('docs', graphql_docs, name='graphql_docs'),
]
FastAPI and Ariadne
# schema.py
from ariadne import load_schema_from_path
schema = load_schema_from_path("schema.graphql")
# main.py
from fastapi import FastAPI, Response
from schema import schema
import graphdoc
app = FastAPI()
@app.get("/docs")
async def graphql_docs():
html = graphdoc.to_doc(schema)
return Response(content=html, media_type="text/html")
API
graphdoc.to_doc(schema, templates_folder=None, context=None)
schema: GraphQLSchema instance or a str with a schema in SDL.
templates_folder: Optional path to a templates folder. If received, Jinja will look for templates in this folder before falling back to the defaults here.
context: An optional custom dictionary to be passed to the templates variables.
Custom templates
You can find more example apps using custom templates and documenting multiple schemas in the examples folder
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file graphdoc-0.4.0.tar.gz.
File metadata
- Download URL: graphdoc-0.4.0.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fea0003011591b52fb92da9151f1e63b0afaf7bbb6ae93821dae42f459d56ee6
|
|
| MD5 |
b64140ea84706ebb87b0fdda7cc75ba3
|
|
| BLAKE2b-256 |
57e44dafbeada91ee4a381bb82a4259ec2bd95b9a00eed85d0115c352dfb156c
|
File details
Details for the file graphdoc-0.4.0-py3-none-any.whl.
File metadata
- Download URL: graphdoc-0.4.0-py3-none-any.whl
- Upload date:
- Size: 20.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08c6d6e0c381114102d4d1a3eb2b54cbc0a3c9f62fe164583e04d8256785cab8
|
|
| MD5 |
e1a5f50381ed09afbd5f823943a531bb
|
|
| BLAKE2b-256 |
a018ffdea68f87018749cdec57067dddaa0d59b2f442f129bd21819e3888b862
|