Update schema introspection docs to show SCHEMA_INDENT option (#802)

* Update schema introspection docs to show indent settings

* fix whitespace
This commit is contained in:
Brett Jackson 2019-10-19 14:33:33 -05:00 committed by Jonathan Kim
parent b085b5922a
commit def6b15e5b

View File

@ -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)
}