Add some documentation to DjangoDebug

This commit is contained in:
Dan Palmer 2018-09-09 18:59:28 +01:00 committed by GitHub
parent f4bbae29df
commit e6b21594d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,4 +4,10 @@ from .sql.types import DjangoDebugSQL
class DjangoDebug(ObjectType):
sql = List(DjangoDebugSQL)
class Meta:
description = "Debugging information for the current query."
sql = List(
DjangoDebugSQL,
description="Executed SQL queries for this API query.",
)