mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-02-07 15:10:35 +03:00
Add some documentation to DjangoDebug
This commit is contained in:
parent
f4bbae29df
commit
e6b21594d7
|
@ -4,4 +4,10 @@ from .sql.types import DjangoDebugSQL
|
||||||
|
|
||||||
|
|
||||||
class DjangoDebug(ObjectType):
|
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.",
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user