From 37adc3cf214e0e28af49e1fd5440e9ae0cc5a81b Mon Sep 17 00:00:00 2001 From: Brett Jackson Date: Fri, 18 Oct 2019 17:53:04 -0500 Subject: [PATCH] Update schema introspection docs to show indent settings --- docs/introspection.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/introspection.rst b/docs/introspection.rst index c1d6ede..0b63596 100644 --- a/docs/introspection.rst +++ b/docs/introspection.rst @@ -44,7 +44,8 @@ specify the parameters in your settings.py: GRAPHENE = { 'SCHEMA': 'tutorial.quickstart.schema', - 'SCHEMA_OUTPUT': 'data/schema.json' # defaults to schema.json + 'SCHEMA_OUTPUT': 'data/schema.json', # defaults to schema.json, + 'SCHEMA_INDENT': 2, # Defaults to None (displays all data on a single line) }